https://github.com/jekyll/jekyll
Raw File
Tip revision: 72b7b1f0566a3c20951d7b2414f04369e24b1e81 authored by Tom Preston-Werner on 10 July 2011, 22:14:25 UTC
Release 0.11.0
Tip revision: 72b7b1f
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