summaryrefslogtreecommitdiff
path: root/test/unit/suite.rb
blob: 26ebe1b560ed7b2c7da8cd537d24543c6791f5c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'simplecov'
require 'test/unit'
require 'rubygems'

$VERBOSE = $CODERAY_DEBUG = true
$:.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