Sha256: 5c8a4caeffb2f7636b7ce38aa6513f5aa4abeda250332f8cbb7f9b4dcc1c46c9

Contents?: true

Size: 1 KB

Versions: 5

Compression:

Stored size: 1 KB

Contents

require "rubygems"

require "jekyll"
require "liquid"

require 'minitest/autorun'

require "jekyll-html-pipeline"

# Send STDERR into the void to suppress program output messages
# STDERR.reopen(test(?e, '/dev/null') ? '/dev/null' : 'NUL:')

module Converter
  class HTMLPipelineTestCase < MiniTest::Test
  end
end

# module
# class Test::Unit::TestCase
#   def dest_dir(*subdirs)
#     test_dir('dest', *subdirs)
#   end

#   def source_dir(*subdirs)
#     test_dir('source', *subdirs)
#   end

#   def clear_dest
#     FileUtils.rm_rf(dest_dir)
#   end

#   def test_dir(*subdirs)
#     File.join(File.dirname(__FILE__), *subdirs)
#   end

#   def directory_with_contents(path)
#     FileUtils.rm_rf(path)
#     FileUtils.mkdir(path)
#     File.open("#{path}/index.html", "w"){ |f| f.write("I was previously generated.") }
#   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

5 entries across 5 versions & 1 rubygems

Version Path
jekyll-html-pipeline-1.0.0 test/test_helper.rb
jekyll-html-pipeline-0.1.4 test/test_helper.rb
jekyll-html-pipeline-0.1.3 test/test_helper.rb
jekyll-html-pipeline-0.1.2 test/test_helper.rb
jekyll-html-pipeline-0.1.1 test/test_helper.rb