aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorregnat <rg@regnat.ovh>2021-07-06 08:43:06 +0200
committerregnat <rg@regnat.ovh>2021-07-06 08:43:06 +0200
commite4b082a52b4cd983b50037783a647cf39cd18bdf (patch)
tree6fdfedfc04f0736f5eb710ae1a71a2d440a2b23a /tests
parenta487a652ed2f662782529d8f2bea4cf90a05e0c9 (diff)
allow fetchMercurial to take a `name` argument
Diffstat (limited to 'tests')
-rw-r--r--tests/fetchMercurial.sh5
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$ ]]