Add a simple remove test
authormpm@selenic.com
Wed, 17 Aug 2005 12:26:06 -0800
changeset 936 b62d1e738fa9
parent 935 925563ff1b18
child 937 e4f1b76831b2
Add a simple remove test
tests/test-remove
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/test-remove	Wed Aug 17 12:26:06 2005 -0800
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+hg init a
+cd a
+echo a > foo
+hg add foo
+hg commit -m 1 -d "0 0"
+rm foo
+hg remove foo
+hg commit -m 2 -d "0 0"
+
+cd ..
+hg clone a b