https://github.com/jekyll/jekyll
Raw File
Tip revision: 787d68f512a023c0c321deb3fa25cffd02fc851d authored by Parker Moore on 18 March 2013, 23:11:33 UTC
Release 1.0.0.beta2
Tip revision: 787d68f
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