about summary refs log tree commit diff
path: root/tests/user-envs.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/user-envs.sh')
-rw-r--r--tests/user-envs.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/user-envs.sh b/tests/user-envs.sh
index 4f94690d8378..bd14f51080b3 100644
--- a/tests/user-envs.sh
+++ b/tests/user-envs.sh
@@ -85,6 +85,11 @@ $nixenv -p $profiles/test -f ./user-envs.nix -i foo
 test "$($nixenv -p $profiles/test -q | grep foo- | wc)" -eq 1
 $nixenv -p $profiles/test -q | grep -q foo-2.0
 
+# On the other hand, this should install both (and should fail due to
+# a collision).
+$nixenv -p $profiles/test -f ./user-envs.nix -e '*'
+if $nixenv -p $profiles/test -f ./user-envs.nix -i foo-1.0 foo-2.0; then false; fi
+
 # Installing "*" should install one foo and one bar.
 $nixenv -p $profiles/test -f ./user-envs.nix -e '*'
 $nixenv -p $profiles/test -f ./user-envs.nix -i '*'