To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / vendor / gems / coderay-0.9.7 / test / functional / suite.rb @ 442:753f1380d6bc

History | View | Annotate | Download (265 Bytes)

1
require 'test/unit'
2

    
3
MYDIR = File.dirname(__FILE__)
4

    
5
$:.unshift 'lib'
6
require 'coderay'
7
puts "Running basic CodeRay #{CodeRay::VERSION} tests..."
8

    
9
suite = %w(basic load_plugin_scanner word_list)
10
for test_case in suite
11
  load File.join(MYDIR, test_case + '.rb')
12
end