feisty needs to set the SHUNIT_DIR variable.
--- /dev/null
+#!/bin/bash
+
+# An example of using shunit2.
+#
+# Author: Chris Koeritz
+
+export WORKDIR="$( \cd "$(\dirname "$0")" && \pwd )" # obtain the script's working directory.
+cd $WORKDIR
+
+SHUNIT_DIR=/home/fred/xsede/xsede_tests/shunit
+
+oneTimeSetUp()
+{
+ echo into set up.
+}
+
+testOneThing()
+{
+ echo got to test case.
+ zero=0
+ assertEquals "zero should be equal to 0" 0 $zero
+ sleep 23
+}
+
+oneTimeTearDown()
+{
+ echo into tear down.
+}
+
+# load and run shUnit2
+source $SHUNIT_DIR/shunit2
+