tests/test-xdg.t
author Anton Shestakov <av6@dwimlabs.net>
Wed, 25 Jan 2023 19:27:50 +0400
branchstable
changeset 49950 5df6d4f06a8f
parent 32429 7d8da7b54dc0
child 51607 a4b3b8dee0a8
permissions -rw-r--r--
hghave: make different has_pyoxidizer functions have different names There are 3 of them, and them all having the same name triggered code checkers.

#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 2>/dev/null
  foobar

#endif