##// END OF EJS Templates
test-tag: test that all reserved names are rejected
Kevin Bullock -
r17813:813db1dc default
parent child Browse files
Show More
@@ -40,9 +40,15 b''
40 $ hg tag -r 0 x y z y y z
40 $ hg tag -r 0 x y z y y z
41 abort: tag names must be unique
41 abort: tag names must be unique
42 [255]
42 [255]
43 $ hg tag tap nada dot tip null .
43 $ hg tag tap nada dot tip
44 abort: the name 'tip' is reserved
44 abort: the name 'tip' is reserved
45 [255]
45 [255]
46 $ hg tag .
47 abort: the name '.' is reserved
48 [255]
49 $ hg tag null
50 abort: the name 'null' is reserved
51 [255]
46 $ hg tag "bleah"
52 $ hg tag "bleah"
47 abort: tag 'bleah' already exists (use -f to force)
53 abort: tag 'bleah' already exists (use -f to force)
48 [255]
54 [255]
General Comments 0
You need to be logged in to leave comments. Login now