aboutsummaryrefslogtreecommitdiffstats
path: root/tests/03_delete
diff options
context:
space:
mode:
authorgramanas <anastasis.gramm2@gmail.com>2018-10-19 13:06:27 +0300
committergramanas <anastasis.gramm2@gmail.com>2018-10-19 13:06:27 +0300
commit18e6099230c3bfe23d4faeeae289554f127deb87 (patch)
treee395857e93a6f40a801aa97c8fd4e9349c72e824 /tests/03_delete
parent147efc35461763c38e8875afac7bc44d2559204b (diff)
downloadck-18e6099230c3bfe23d4faeeae289554f127deb87.tar.gz
ck-18e6099230c3bfe23d4faeeae289554f127deb87.tar.bz2
ck-18e6099230c3bfe23d4faeeae289554f127deb87.zip
Add install script and config/verbose help
Diffstat (limited to 'tests/03_delete')
-rw-r--r--tests/03_delete14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/03_delete b/tests/03_delete
index ee1cdd6..1668576 100644
--- a/tests/03_delete
+++ b/tests/03_delete
@@ -15,10 +15,10 @@ add_config prog2 $path3
add_config prog2 $path4
# delete path1
-exec $BIN/ck conf $BIN del -c $path1 > /dev/null &
+exec $BIN/ck -c $BIN del -c $path1 > /dev/null &
wait $!
-for i in $($BIN/ck conf $BIN list paths); do
+for i in $($BIN/ck -c $BIN list paths); do
if [[ "$i" == "$path1" ]]; then
err "Couldn't delete path."
exit 1
@@ -26,26 +26,26 @@ for i in $($BIN/ck conf $BIN list paths); do
done
# delete path2 (also prog1)
-exec $BIN/ck conf $BIN del -c $path2 > /dev/null &
+exec $BIN/ck -c $BIN del -c $path2 > /dev/null &
wait $!
-for i in $($BIN/ck conf $BIN list programs); do
+for i in $($BIN/ck -c $BIN list programs); do
if [[ "$i" == "prog1" ]]; then
err "Removing all configs should delete the correspondig program."
fi
done
# delete prog2
-exec $BIN/ck conf $BIN del prog2 > /dev/null &
+exec $BIN/ck -c $BIN del prog2 > /dev/null &
wait $!
-for i in $($BIN/ck conf $BIN list paths); do
+for i in $($BIN/ck -c $BIN list paths); do
if [[ "$i" == "$path3" ]] || [[ "$i" == "$path4" ]]; then
err "Removing the program should delete all it's configs."
fi
done
-for i in $($BIN/ck conf $BIN list programs); do
+for i in $($BIN/ck -c $BIN list programs); do
if [[ "$i" == "prog1" ]]; then
err "Couldn't remove program."
fi