diff -r d7809d6e9db2 -r 2bc6cd62a29c tests/test-revert --- a/tests/test-revert Wed Nov 02 15:45:41 2005 -0800 +++ b/tests/test-revert Wed Nov 02 15:46:31 2005 -0800 @@ -6,19 +6,27 @@ hg add a c hg commit -m "first" -d "0 0" a c echo 123 > b +echo %% should show b unknown hg status echo 12 > c +echo %% should show b unknown and c modified hg status hg add b +echo %% should show b added and c modified hg status hg rm a +echo %% should show a removed, b added and c modified hg status hg revert a +echo %% should show b added and c modified hg status hg revert b +echo %% should show b unknown and c modified hg status hg revert c +echo %% should show b unknown hg status +echo %% should show a b and c ls true