X-Git-Url: http://git.scottworley.com/pinch/blobdiff_plain/17906b2786e4c5e57a66874fd78c9cf70e074677..01ba0eb2f8683ddb6f892c7adc98626cdba0d236:/tests/multi-update.sh diff --git a/tests/multi-update.sh b/tests/multi-update.sh new file mode 100755 index 0000000..e7e5495 --- /dev/null +++ b/tests/multi-update.sh @@ -0,0 +1,41 @@ +#!/bin/sh + +repo_dir="`mktemp -d`" +repo="$repo_dir/repo" +git init "$repo" +( + cd "$repo" + echo Contents > test-file + git add test-file + git commit -m 'Commit message' +) + +conf1="`mktemp`" +cat > "$conf1" < "$conf2" <'\'' --install --from-expression '\''f: f \{ name = "(repo-[0-9]{10}-[0-9a-f]{11})"; channelName = "bar"; src = builtins.storePath "/nix/store/.{32}-\1.tar.xz"; \}'\'' '\''f: f \{ name = "\1"; channelName = "foo"; src = builtins.storePath "/nix/store/.{32}-\1.tar.xz"; \}'\''$' + +if echo "$actual_env_command" | egrep "$expected_env_command_RE" > /dev/null;then + echo PASS +else + echo "Output: $actual_env_command" + echo "does not match RE: $expected_env_command_RE" + exit 1 +fi