summaryrefslogtreecommitdiff
path: root/test/unit/suite.rb
blob: ee568e77b0a0eaaf6285ef3c033b50a2bad5562c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'test/unit'
require 'rubygems'
$:.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