# HG changeset patch # User Arun Kulshreshtha # Date 1682540292 14400 # Node ID a20df0150f82b10ac5235d3b2fb94ff98ce2eab0 # Parent f4ff55583dec039eb7acdee7ac8ee57495770384 tests: add test for status copy source formatting diff -r f4ff55583dec -r a20df0150f82 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