diff tests/test-update-renames @ 10874:4f11978ae45d stable

copies: properly visit file context ancestors on working file contexts
author Henrik Stuart <henrik.stuart@edlund.dk>
date Wed, 07 Apr 2010 21:31:47 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/test-update-renames	Wed Apr 07 21:31:47 2010 +0200
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+# test update logic when there are renames
+
+
+# update with local changes across a file rename
+hg init a
+cd a
+echo a > a
+hg add a
+hg ci -m a
+hg mv a b
+hg ci -m rename
+echo b > b
+hg ci -m change
+hg up -q 0
+echo c > a
+hg up
+cd ..