https://github.com/jekyll/jekyll
Raw File
Tip revision: 6782ac9ef507ec33d469928077b910755d1d2c9f authored by Parker Moore on 04 April 2013, 14:15:02 UTC
Release 1.0.0.beta3
Tip revision: 6782ac9
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