mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-13 00:48:19 -05:00
12 lines
267 B
Ruby
12 lines
267 B
Ruby
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
|