diff options
author | regnat <rg@regnat.ovh> | 2021-07-06 08:43:06 +0200 |
---|---|---|
committer | regnat <rg@regnat.ovh> | 2021-07-06 08:43:06 +0200 |
commit | e4b082a52b4cd983b50037783a647cf39cd18bdf (patch) | |
tree | 6fdfedfc04f0736f5eb710ae1a71a2d440a2b23a /tests | |
parent | a487a652ed2f662782529d8f2bea4cf90a05e0c9 (diff) |
allow fetchMercurial to take a `name` argument
Diffstat (limited to 'tests')
-rw-r--r-- | tests/fetchMercurial.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/fetchMercurial.sh b/tests/fetchMercurial.sh index d8a4e09d2..726840664 100644 --- a/tests/fetchMercurial.sh +++ b/tests/fetchMercurial.sh @@ -94,3 +94,8 @@ hg commit --cwd $repo -m 'Bla3' path4=$(nix eval --impure --refresh --raw --expr "(builtins.fetchMercurial file://$repo).outPath") [[ $path2 = $path4 ]] + +echo paris > $repo/hello +# Passing a `name` argument should be reflected in the output path +path5=$(nix eval -vvvvv --impure --refresh --raw --expr "(builtins.fetchMercurial { url = \"file://$repo\"; name = \"foo\"; } ).outPath") +[[ $path5 =~ -foo$ ]] |