https://github.com/jekyll/jekyll
Raw File
Tip revision: 0e20ced15185fe32d65daf39a6ad5056f9ab9b59 authored by Parker Moore on 14 January 2014, 02:10:33 UTC
Release 1.4.3
Tip revision: 0e20ced
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