Mercurial > hg
diff tests/test-cat.t @ 11874:a3c1234b3761
tests: unify test-cat
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Sat, 14 Aug 2010 03:27:24 +0200 |
parents | tests/test-cat@991f7518c3f3 |
children | fddacca3202e |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-cat.t Sat Aug 14 03:27:24 2010 +0200 @@ -0,0 +1,24 @@ + $ mkdir t + $ cd t + $ hg init + $ echo 0 > a + $ echo 0 > b + $ hg ci -A -m m -d "1000000 0" + adding a + adding b + $ hg rm a + $ hg cat a + 0 + $ hg cat --decode a # more tests in test-encode + 0 + $ echo 1 > b + $ hg ci -m m -d "1000000 0" + $ echo 2 > b + $ hg cat -r 0 a + 0 + $ hg cat -r 0 b + 0 + $ hg cat -r 1 a + a: No such file in rev 03f6b0774996 + $ hg cat -r 1 b + 1