diff options
Diffstat (limited to 'test.sh')
-rwxr-xr-x | test.sh | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -0,0 +1,28 @@ +#!/bin/bash + +CONF=$(realpath conf) +CONF_HOME=$(mktemp -d) +export CONF_HOME + +conf1=$(mktemp) +conf2=$(mktemp) +conf3=$(mktemp) +conf4=$(mktemp) +conf5=$(mktemp) + +echo "test config 1" > "$conf1" +echo "test config 2" > "$conf2" +echo "test config 3" > "$conf3" +echo "test config 4" > "$conf4" +echo "test config 5" > "$conf5" + +$CONF add "$conf1" +$CONF add -g conf "$conf2" "$conf3" +$CONF add -g conf "$conf4" +$CONF add -g other "$conf5" + +[ "$($CONF ls -l | wc -l)" != "5" ] && echo Test failed +[ "$($CONF ls | wc -l)" != "8" ] && echo Test failed + +rm -rf "$conf1" "$conf2" "$conf3" "$conf4" "$conf5" "$CONF_HOME" +echo PASS |