tests/test-xdg.t
author Augie Fackler <augie@google.com>
Thu, 19 Jan 2017 16:27:08 -0500
changeset 31153 628600bf55e4
parent 30961 354020079723
child 32467 7d8da7b54dc0
permissions -rw-r--r--
tests: un-nest the `order` repo in test-rebase-scenario-global This wasn't hurting anything, but it's more in line with how we manage other tests.

#if no-windows no-osx

  $ mkdir -p xdgconf/hg
  $ echo '[ui]' > xdgconf/hg/hgrc
  $ echo 'username = foobar' >> xdgconf/hg/hgrc
  $ XDG_CONFIG_HOME="`pwd`/xdgconf" ; export XDG_CONFIG_HOME
  $ unset HGRCPATH
  $ hg config ui.username
  foobar

#endif