summaryrefslogtreecommitdiff
path: root/test/unit/suite.rb
blob: 7d20dc0cec7ed85e0186c1da8e83bd564bf0f113 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'simplecov' if RUBY_VERSION >= '1.9'
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