Revision a5e0403d1d4b9e286c3782eef145845822668a91 authored by Parker Moore on 14 January 2014, 02:06:02 UTC, committed by Parker Moore on 14 January 2014, 02:06:02 UTC
1 parent 6eccb11
Raw File
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