summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xt/test-suite27
1 files changed, 27 insertions, 0 deletions
diff --git a/t/test-suite b/t/test-suite
new file mode 100755
index 0000000..39d9b39
--- /dev/null
+++ b/t/test-suite
@@ -0,0 +1,27 @@
+#!/usr/bin/ruby -I../worker/tests/ -I./worker/tests/ -I../../worker/tests/ -I../worker/ -I../../worker/ -I./worker/
+#
+# This is a simple wrapper that will run the complete test-suite.
+#
+# Steve
+# --
+#
+
+
+
+require 'test/unit'
+require 'fileutils'
+
+
+
+#
+# Find where this file is located.
+#
+dir = File.dirname(__FILE__)
+
+#
+# Load each file in the same directory.
+#
+Dir.glob(File.join(dir,"t*.rb")).each do |test|
+ require test
+end
+