]> git.scottworley.com Git - pinch/blame - tests/reject-duplicates.sh
Release 3.0.10
[pinch] / tests / reject-duplicates.sh
CommitLineData
ab7ebb2f
SW
1#!/bin/sh
2
a2290fb1
SW
3. ./tests/lib/test-setup.sh
4
5foo_setup
6
7repo_dir1=$repo_dir
8repo1=$repo
9conf1=$conf
10
11foo_setup
ab7ebb2f
SW
12
13python3 ./pinch.py pin "$conf1"
a2290fb1 14python3 ./pinch.py pin "$conf"
ab7ebb2f 15
a2290fb1 16if python3 ./pinch.py update --dry-run "$conf1" "$conf";then
ab7ebb2f
SW
17 echo "FAIL: Duplicate names should be rejected"
18 exit 1
19else
20 echo PASS
21fi
22
d9a1088a 23rm -rf "$repo_dir1" "$repo1" "$conf1"