view tests/test-xdg.t @ 52004:e3952d8cfeb5

format: fix few black issues
author paugier <pierre.augier@univ-grenoble-alpes.fr>
date Sun, 13 Oct 2024 04:55:48 +0200
parents a4b3b8dee0a8
children
line wrap: on
line source

#if no-windows

  $ 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