From 6f20b17624a1fb9c6e4d6fd1ba4efaf463209065 Mon Sep 17 00:00:00 2001 From: Dieter Plaetinck Date: Sat, 28 Feb 2009 18:02:11 +0100 Subject: check_is_in fixes.. and this time i mean it.. i think. hopefully. + test script for check_is_in --- tests/test-check_is_in.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 tests/test-check_is_in.sh (limited to 'tests') diff --git a/tests/test-check_is_in.sh b/tests/test-check_is_in.sh new file mode 100755 index 0000000..0d97361 --- /dev/null +++ b/tests/test-check_is_in.sh @@ -0,0 +1,7 @@ +basedir=$(dirname "`dirname $0`") +source $basedir/src/core/libs/lib-ui.sh #dependency needed +source $basedir/src/core/libs/lib-misc.sh + +vars=(A B C D E F) +check_is_in C "${vars[@]}" && echo 'ok C was in there' || echo 'wtf' +check_is_in AOEUAU "${vars[@]}" && echo wtf || echo 'ok it was not in there' -- cgit v1.2.3-54-g00ecf