tests: add test for status copy source formatting stable
authorArun Kulshreshtha <akulshreshtha@janestreet.com>
Wed, 26 Apr 2023 16:18:12 -0400
branchstable
changeset 50440 a20df0150f82
parent 50439 f4ff55583dec
child 50441 668a871454e8
tests: add test for status copy source formatting
tests/test-status.t
--- a/tests/test-status.t	Tue Apr 25 17:49:35 2023 -0400
+++ b/tests/test-status.t	Wed Apr 26 16:18:12 2023 -0400
@@ -1000,3 +1000,27 @@
       0         -1 set                 subdir
 
 #endif
+
+
+Test copy source formatting.
+  $ cd ..
+  $ hg init copy-source-repo
+  $ cd copy-source-repo
+  $ mkdir -p foo/bar
+  $ cd foo/bar
+  $ touch file
+  $ hg addremove
+  adding foo/bar/file
+  $ hg commit -m 'add file'
+  $ hg mv file copy
+
+Copy source respects relative path setting.
+  $ hg st --config ui.statuscopies=true --config commands.status.relative=true
+  A copy
+    file
+  R file
+
+Copy source is not shown when --no-status is passed.
+  $ hg st --config ui.statuscopies=true --no-status
+  foo/bar/copy
+  foo/bar/file