tests/test-cat
author John Mulligan <phlogistonjohn@asynchrono.us>
Sat, 15 Mar 2008 15:23:20 -0400
changeset 6311 a079cf630065
parent 6093 f5b00b6e426a
child 6328 991f7518c3f3
permissions -rwxr-xr-x
Add default local() and cancopy() methods to repository base class

#!/bin/sh
#
mkdir t
cd t
hg init
echo 0 > a
echo 0 > b
hg ci -A -m m -d "1000000 0"
hg rm a
hg cat a
hg cat --decode a # more tests in test-encode
sleep 1 # make sure mtime is changed
echo 1 > b
hg ci -m m -d "1000000 0"
echo 2 > b
hg cat -r 0 a
hg cat -r 0 b
hg cat -r 1 a
hg cat -r 1 b