view tests/test-xdg.t @ 51787:73b9558a0c56

manifest: use read_delta_new_entries in verify too This seems like the proper semantic for the usage.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Tue, 06 Aug 2024 02:09:33 +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