tests/test-parse-date
author Thomas Arendsen Hein <thomas@intevation.de>
Wed, 12 Jul 2006 09:01:10 +0200
changeset 2599 e4b5e48052c6
parent 2524 c1974f65d781
child 3250 e96d2956eb4a
permissions -rwxr-xr-x
Added tests for local and remote init. This tests the changes done in edb66cb05ded and b898afee9d0d.

#!/bin/sh

hg init
echo "test-parse-date" > a
hg add a
hg ci -d "2006-02-01 13:00:30" -m "rev 0"
echo "hi!" >> a
hg ci -d "2006-02-01 13:00:30 -0500" -m "rev 1"
hg tag -d "2006-04-15 13:30" "Hi"
hg backout --merge -d "2006-04-15 13:30 +0200" -m "rev 3" 1
hg ci -d "1150000000 14400" -m "rev 4 (merge)"
echo "fail" >> a
hg ci -d "should fail" -m "fail"
hg ci -d "100000000000000000 1400" -m "fail"
hg ci -d "100000 1400000" -m "fail"
hg log --template '{date|date}\n'