https://github.com/jekyll/jekyll
Raw File
Tip revision: 94eed4643612522934ac0c354fa066011fab8d3c authored by Matt Rogers on 15 September 2013, 03:21:15 UTC
Release 1.2.1
Tip revision: 94eed46
suite.rb
require 'rubygems'
gem 'test-unit'
require 'test/unit'

# for some reason these tests fail when run via TextMate
# but succeed when run on the command line.

tests = Dir[File.expand_path("#{File.dirname(__FILE__)}/test_*.rb")]
tests.each do |file|
  require file
end
back to top