20 lines
415 B
Ruby
20 lines
415 B
Ruby
require 'fileutils'
|
|
require 'rr'
|
|
require 'test/unit'
|
|
|
|
World do
|
|
include Test::Unit::Assertions
|
|
end
|
|
|
|
TEST_DIR = File.join('/', 'tmp', 'jekyll')
|
|
JEKYLL_PATH = File.join(ENV['PWD'], 'bin', 'jekyll')
|
|
|
|
def run_jekyll(opts = {})
|
|
command = JEKYLL_PATH
|
|
command << " >> /dev/null 2>&1" if opts[:debug].nil?
|
|
system command
|
|
end
|
|
|
|
# work around "invalid option: --format" cucumber bug (see #296)
|
|
Test::Unit.run = true
|