Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
mercurial-devel
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mercurial
mercurial-devel
Commits
5ff0fd02
Commit
5ff0fd02
authored
11 years ago
by
Matt Mackall
Browse files
Options
Downloads
Plain Diff
merge with crew
parents
507919a3
af02783d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
hgext/record.py
+2
-1
2 additions, 1 deletion
hgext/record.py
mercurial/help/templates.txt
+1
-1
1 addition, 1 deletion
mercurial/help/templates.txt
tests/test-module-imports.t
+7
-0
7 additions, 0 deletions
tests/test-module-imports.t
tests/test-record.t
+20
-0
20 additions, 0 deletions
tests/test-record.t
with
30 additions
and
2 deletions
hgext/record.py
+
2
−
1
View file @
5ff0fd02
...
...
@@ -502,7 +502,8 @@
cmdsuggest
)
# make sure username is set before going interactive
ui
.
username
()
if
not
opts
.
get
(
'
user
'
):
ui
.
username
()
# raise exception, username not provided
def
recordfunc
(
ui
,
repo
,
message
,
match
,
opts
):
"""
This is generic record driver.
...
...
This diff is collapsed.
Click to expand it.
mercurial/help/templates.txt
+
1
−
1
View file @
5ff0fd02
...
...
@@ -105,4 +105,4 @@
- Display the contents of the 'extra' field, one per line::
$ hg log -r 0 --template "{join(extras, '\n')}\n"
$ hg log -r 0 --template "{join(extras, '\n')}\n"
This diff is collapsed.
Click to expand it.
tests/test-module-imports.t
+
7
−
0
View file @
5ff0fd02
...
...
@@ -2,6 +2,13 @@
this test on anything earlier.
$ python -c
'
import
sys
;
assert
sys
.
version_info
>=
(
2
,
6
)'
|| exit 80
Virtualenv has a habit of leaving BaseHTTPServer and other modules in
a place where the import checker is confused about their nature as
part of the stdlib. Skip the test if BaseHTTPServer
'
s path isn't a
subpath of sys.pr
efix
.
$
python
-
c
'
import sys, BaseHTTPServer; assert BaseHTTPServer.__file__.startswith(sys.prefix)
'
||
exit
80
$
import_checker
=
"
$TESTDIR
"
/../con
trib
/
import
-
checker
.
py
Run
the
doctests
from
the
import
checker
,
and
make
sure
it
'
s working correctly.
...
...
This diff is collapsed.
Click to expand it.
tests/test-record.t
+
20
−
0
View file @
5ff0fd02
...
...
@@ -1277,5 +1277,25 @@
c
+d
Test --user when ui.username not set
$ unset HGUSER
$ echo e >> subdir/f1
$ hg record --config ui.username= -d
'
8
0
'
--user xyz -m "user flag" <<EOF
> y
> y
> EOF
diff --git a/subdir/f1 b/subdir/f1
1 hunks, 1 lines changed
examine changes to
'
subdir
/
f1
'
? [Ynesfdaq?]
@@ -4,3 +4,4 @@
b
c
d
+e
record this change to
'
subdir
/
f1
'
? [Ynesfdaq?]
$ hg log --template
'{
author
}
\
n
'
-l 1
xyz
$ HGUSER="test"
$ export HGUSER
$ cd ..
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment