35 lines
639 B
Ruby
35 lines
639 B
Ruby
require 'rubygems'
|
|
gem 'RedCloth', '>= 4.2.1'
|
|
|
|
require 'jekyll'
|
|
|
|
require 'RedCloth'
|
|
require 'rdiscount'
|
|
require 'kramdown'
|
|
|
|
require 'redgreen' if RUBY_VERSION < '1.9'
|
|
require 'shoulda'
|
|
require 'rr'
|
|
|
|
|
|
include Jekyll
|
|
|
|
# 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
|
|
end
|