2012-05-04 21:46:01 +00:00
|
|
|
# encoding: utf-8
|
2011-02-19 20:44:08 +00:00
|
|
|
######################################################################
|
|
|
|
# This file is imported from the minitest project.
|
|
|
|
# DO NOT make modifications in this repo. They _will_ be reverted!
|
|
|
|
# File a patch instead and assign it to Ryan Davis.
|
|
|
|
######################################################################
|
2008-12-13 00:22:31 +00:00
|
|
|
|
2011-08-26 21:45:02 +00:00
|
|
|
begin
|
2011-08-26 21:47:28 +00:00
|
|
|
require 'rubygems'
|
2011-08-26 21:45:02 +00:00
|
|
|
gem 'minitest'
|
|
|
|
rescue Gem::LoadError
|
|
|
|
# do nothing
|
|
|
|
end
|
|
|
|
|
2008-12-13 00:22:31 +00:00
|
|
|
require 'minitest/unit'
|
2009-06-18 07:31:39 +00:00
|
|
|
require 'minitest/spec'
|
|
|
|
require 'minitest/mock'
|
2008-12-13 00:22:31 +00:00
|
|
|
|
|
|
|
MiniTest::Unit.autorun
|