https://github.com/jekyll/jekyll
Raw File
Tip revision: 1319b823f8dd2ee8155c63653c4d029f4b7c5d71 authored by Parker Moore on 09 April 2013, 19:31:23 UTC
Release 1.0.0.beta4
Tip revision: 1319b82
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