2010-05-25 19:45:45 +02:00
|
|
|
$:.unshift File.expand_path('../../../activesupport/lib', __FILE__)
|
|
|
|
$:.unshift File.expand_path('../../../activerecord/lib', __FILE__)
|
|
|
|
$:.unshift File.expand_path('../../../actionpack/lib', __FILE__)
|
|
|
|
$:.unshift File.expand_path('../../../actionmailer/lib', __FILE__)
|
|
|
|
$:.unshift File.expand_path('../../lib', __FILE__)
|
|
|
|
$:.unshift File.expand_path('../../builtin/rails_info', __FILE__)
|
2007-02-10 00:12:31 +01:00
|
|
|
|
2009-02-28 02:23:00 +01:00
|
|
|
require 'stringio'
|
2009-02-04 21:26:08 +01:00
|
|
|
require 'rubygems'
|
2007-02-10 00:12:31 +01:00
|
|
|
require 'test/unit'
|
2009-02-28 02:23:00 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
require 'active_support'
|
2009-02-04 21:26:08 +01:00
|
|
|
require 'active_support/test_case'
|
2007-02-10 00:12:31 +01:00
|
|
|
|
|
|
|
if defined?(RAILS_ROOT)
|
|
|
|
RAILS_ROOT.replace File.dirname(__FILE__)
|
|
|
|
else
|
|
|
|
RAILS_ROOT = File.dirname(__FILE__)
|
2009-02-28 02:23:00 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def uses_gem(gem_name, test_name, version = '> 0')
|
|
|
|
gem gem_name.to_s, version
|
|
|
|
require gem_name.to_s
|
|
|
|
yield
|
|
|
|
rescue LoadError
|
|
|
|
$stderr.puts "Skipping #{test_name} tests. `gem install #{gem_name}` and try again."
|
|
|
|
end
|