blob: 039ab476605f1a01c5a1bd074500097fe8f6608f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'test/unit'
MYDIR = File.dirname(__FILE__)
$: << 'lib'
require 'coderay'
puts "Running basic CodeRay #{CodeRay::VERSION} tests..."
suite = %w(basic load_plugin_scanner word_list)
for test_case in suite
load File.join(MYDIR, test_case + '.rb')
end
|