summaryrefslogtreecommitdiff
path: root/t/test-suite
blob: 39d9b39d4d8a9363045b6a061ac82e9535a094e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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