https://github.com/jekyll/jekyll
Raw File
Tip revision: 317e2f460ea658780eaae4e3285049cce317de5d authored by Parker Moore on 24 January 2015, 17:55:46 UTC
Release :gem: v3.0.0.beta1
Tip revision: 317e2f4
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