tests/test-xdg.t
author Augie Fackler <augie@google.com>
Sun, 12 Mar 2017 00:49:49 -0500
changeset 31356 ef6888172437
parent 30941 354020079723
child 32429 7d8da7b54dc0
permissions -rw-r--r--
revlog: extract first byte of revlog with a slice so it's portable

#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