Sha256: daee552afe03e8e24afedea7a88068f5a24a28e2df2053b88be38a4192d18afd
Contents?: true
Size: 930 Bytes
Versions: 1
Compression:
Stored size: 930 Bytes
Contents
if RUBY_VERSION > '1.9' && ENV["COVERAGE"] == "true" require 'simplecov' require 'simplecov-gem-adapter' SimpleCov.start('gem') end require 'test/unit' require 'redgreen' if RUBY_VERSION < '1.9' require 'shoulda' require 'rr' Dir.glob(File.expand_path('../../lib/jekyll/jekyll-import/*', __FILE__)).each do |f| require f end # Send STDERR into the void to suppress program output messages STDERR.reopen(test(?e, '/dev/null') ? '/dev/null' : 'NUL:') class Test::Unit::TestCase include RR::Adapters::TestUnit def dest_dir(*subdirs) File.join(File.dirname(__FILE__), 'dest', *subdirs) end def source_dir(*subdirs) File.join(File.dirname(__FILE__), 'source', *subdirs) end def clear_dest FileUtils.rm_rf(dest_dir) end def capture_stdout $old_stdout = $stdout $stdout = StringIO.new yield $stdout.rewind return $stdout.string ensure $stdout = $old_stdout end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jekyll-import-0.1.0.beta1 | test/helper.rb |