Mercurial > hg-stable
diff tests/test-paths.t @ 12662:7285b2824fb7
ui.paths: expand paths directly in fixconfig (issue2373)
var and home expansion should be done first.
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Sat, 09 Oct 2010 12:28:16 -0500 |
parents | 6cc4b14fb76b |
children | 16d5e80876de |
line wrap: on
line diff
--- a/tests/test-paths.t Sat Oct 09 11:55:25 2010 -0500 +++ b/tests/test-paths.t Sat Oct 09 12:28:16 2010 -0500 @@ -5,6 +5,7 @@ $ cd a $ echo '[paths]' >> .hg/hgrc $ echo 'dupe = ../b' >> .hg/hgrc + $ echo 'expand = $SOMETHING/bar' >> .hg/hgrc $ hg in dupe comparing with $TESTTMP/b no changes found @@ -14,3 +15,13 @@ comparing with $TESTTMP/b no changes found [1] + $ cd a + $ hg paths + dupe = $TESTTMP/b + expand = $TESTTMP/a/$SOMETHING/bar + $ SOMETHING=foo hg paths + dupe = $TESTTMP/b + expand = $TESTTMP/a/foo/bar + $ SOMETHING=/foo hg paths + dupe = $TESTTMP/b + expand = /foo/bar