Mercurial > hg > soundsoftware-site
view vendor/gems/coderay-1.0.0/test/functional/suite.rb @ 1472:f0b798dad2d6 feature_526
Close obsolete branch feature_526
author | Chris Cannam |
---|---|
date | Tue, 20 Nov 2012 19:45:51 +0000 |
parents | cbb26bc654de |
children |
line wrap: on
line source
require 'test/unit' $VERBOSE = $CODERAY_DEBUG = true $:.unshift File.expand_path('../../../lib', __FILE__) require 'coderay' mydir = File.dirname(__FILE__) suite = Dir[File.join(mydir, '*.rb')]. map { |tc| File.basename(tc).sub(/\.rb$/, '') } - %w'suite for_redcloth' puts "Running basic CodeRay #{CodeRay::VERSION} tests: #{suite.join(', ')}" for test_case in suite load File.join(mydir, test_case + '.rb') end