https://github.com/jekyll/jekyll
Raw File
Tip revision: 13df72207305c0b2ebc5793f83a27feb719a9f56 authored by Tom Preston-Werner on 17 December 2010, 00:29:48 UTC
Release 0.10.0
Tip revision: 13df722
suite.rb
require 'test/unit'

# for some reason these tests fail when run via TextMate
# but succeed when run on the command line.

tests = Dir["#{File.dirname(__FILE__)}/test_*.rb"]
tests.each do |file|
  require file
end
back to top