diff tests/test-git-export @ 3695:3a2fc90d27d6

fix typo in mercurial/patch.py
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
date Mon, 20 Nov 2006 19:32:37 -0200
parents c0b1a0c72c7d
children 562a65635bcb
line wrap: on
line diff
--- a/tests/test-git-export
+++ b/tests/test-git-export
@@ -94,3 +94,21 @@ echo
 echo '% file created after r1 and renamed before r2'
 hg diff --git -r -5:-1
 
+echo
+echo '% comparing with the working dir'
+echo >> start
+hg ci -m 'change start again' -d '0 0'
+
+echo > created
+hg add created
+hg ci -m 'add created'
+
+hg mv created created2
+hg ci -m 'mv created created2'
+
+hg mv created2 created3
+echo "% there's a copy in the working dir..."
+hg diff --git
+echo
+echo "% ...but there's another copy between the original rev and the wd"
+hg diff --git -r -2