summaryrefslogtreecommitdiff
path: root/test/unit/suite.rb
blob: 769b6cc928093e8eec26e20950b8a00b173390bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'test/unit'
$:.unshift 'lib'

mydir = File.dirname(__FILE__)
suite = Dir[File.join(mydir, '*.rb')].
  map { |tc| File.basename(tc).sub(/\.rb$/, '') } - %w'suite vhdl'

puts "Running CodeRay unit tests: #{suite.join(', ')}"

helpers = %w(file_type word_list tokens)
for test_case in helpers + (suite - helpers)
  load File.join(mydir, test_case + '.rb')
end