handling no parms better
[feisty_meow.git] / scripts / shunit / example_shunit_test.sh
old mode 100755 (executable)
new mode 100644 (file)
index cc6c1bb..8931aef
@@ -3,14 +3,15 @@
 # An example of using shunit2.
 #
 # Author: Chris Koeritz
+# license gnu gpl v3
 
-export WORKDIR="$( \cd "$(\dirname "$0")" && \pwd )"  # obtain the script's working directory.
+export THISDIR="$( \cd "$(\dirname "$0")" && /bin/pwd )"  # obtain the script's working directory.
 if [[ ! "$0" =~ ^/.* ]]; then
   # re-run the script with an absolute path if it didn't start out that way; otherwise,
   # shunit is not happy with finding the script.
-  exec "$WORKDIR/$(basename $0)" $*
+  exec "$THISDIR/$(basename $0)" $*
 fi
-cd $WORKDIR
+cd $THISDIR
 
 oneTimeSetUp()
 {
@@ -19,11 +20,14 @@ oneTimeSetUp()
 
 testOneThing()
 {
-  echo "got to test case.  sleeping for a bit..."
+  echo "got to primary test case."
   zero=0
   assertEquals "zero should be equal to 0" 0 $zero
-  sleep 23
-  echo "woke up.  passed tautological test."
+  echo "passed tautological test."
+  sleep_time=83
+  echo "$(date): now sleeping for $sleep_time seconds."
+  sleep $sleep_time
+  echo "$(date): woke up."
 }
 
 oneTimeTearDown()
@@ -32,5 +36,5 @@ oneTimeTearDown()
 }
 
 # load and run shUnit2
-source $SHUNIT_DIR/shunit2
+source $SHUNIT_PATH/shunit2