comparison tests/test-tag.t @ 12399:4fee1fd3de9a

tests: added a short description to issue numbers Many tests already had a short line to describe what IssueXXX is about. I find that quite useful when reading a test.
author Martin Geisler <mg@aragost.com>
date Fri, 24 Sep 2010 10:13:49 +0200
parents 22f3353bcc36
children bb35840e965c
comparison
equal deleted inserted replaced
12398:2bc926ad65c2 12399:4fee1fd3de9a
146 $ hg clone -q -U test#bleah1 test3 146 $ hg clone -q -U test#bleah1 test3
147 $ hg -R test3 parents --style=compact 147 $ hg -R test3 parents --style=compact
148 148
149 $ cd test 149 $ cd test
150 150
151 issue 601 151 Issue601: hg tag doesn't do the right thing if .hgtags or localtags
152 doesn't end with EOL
152 153
153 $ python << EOF 154 $ python << EOF
154 > f = file('.hg/localtags'); last = f.readlines()[-1][:-1]; f.close() 155 > f = file('.hg/localtags'); last = f.readlines()[-1][:-1]; f.close()
155 > f = file('.hg/localtags', 'w'); f.write(last); f.close() 156 > f = file('.hg/localtags', 'w'); f.write(last); f.close()
156 > EOF 157 > EOF