tests/test-git-import.t
changeset 14385 7709cc983025
parent 12943 7439ea4146f8
child 14431 a6b543e05305
--- a/tests/test-git-import.t	Thu May 19 22:44:01 2011 +0200
+++ b/tests/test-git-import.t	Thu May 19 22:44:01 2011 +0200
@@ -383,3 +383,22 @@
   a   0         -1 unset               b
   $ hg ci -m done
   $ cd ..
+
+Renames and strip
+
+  $ hg init renameandstrip
+  $ cd renameandstrip
+  $ echo a > a
+  $ hg ci -Am adda
+  adding a
+  $ hg import --no-commit -p2 - <<EOF
+  > diff --git a/foo/a b/foo/b
+  > rename from foo/a
+  > rename to foo/b
+  > EOF
+  applying patch from stdin
+  $ hg st --copies
+  A b
+    a
+  R a
+  $ cd ..