2010-09-22 17:24:35 -04:00
|
|
|
# Make double-sure the RAILS_ENV is not set to production,
|
|
|
|
# so fixtures aren't loaded into that environment
|
2010-09-25 05:01:43 -04:00
|
|
|
abort("Abort testing: Your Rails environment is running in production mode!") if Rails.env.production?
|
2005-11-09 10:11:55 -05:00
|
|
|
|
2008-11-17 18:18:01 -05:00
|
|
|
require 'test/unit'
|
2010-03-23 12:48:29 -04:00
|
|
|
require 'active_support/test_case'
|
|
|
|
require 'action_controller/test_case'
|
|
|
|
require 'action_dispatch/testing/integration'
|
2009-12-02 23:01:01 -05:00
|
|
|
|
2010-02-11 12:01:33 -05:00
|
|
|
if defined?(Test::Unit::Util::BacktraceFilter) && ENV['BACKTRACE'].nil?
|
|
|
|
require 'rails/backtrace_cleaner'
|
|
|
|
Test::Unit::Util::BacktraceFilter.module_eval { include Rails::BacktraceFilterForTestUnit }
|
|
|
|
end
|
|
|
|
|
2011-03-31 19:20:59 -04:00
|
|
|
if defined?(MiniTest)
|
2011-04-08 12:40:33 -04:00
|
|
|
# Enable turn if it is available
|
|
|
|
begin
|
|
|
|
require 'turn'
|
2011-03-31 19:20:59 -04:00
|
|
|
|
2011-04-08 12:40:33 -04:00
|
|
|
if MiniTest::Unit.respond_to?(:use_natural_language_case_names=)
|
|
|
|
MiniTest::Unit.use_natural_language_case_names = true
|
|
|
|
end
|
|
|
|
rescue LoadError
|
2011-03-31 19:20:59 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-11-12 14:33:09 -05:00
|
|
|
if defined?(ActiveRecord)
|
2010-03-23 12:48:29 -04:00
|
|
|
require 'active_record/test_case'
|
|
|
|
|
2008-11-12 14:33:09 -05:00
|
|
|
class ActiveSupport::TestCase
|
|
|
|
include ActiveRecord::TestFixtures
|
2009-10-16 15:49:39 -04:00
|
|
|
self.fixture_path = "#{Rails.root}/test/fixtures/"
|
2010-10-14 15:21:28 -04:00
|
|
|
|
|
|
|
setup do
|
|
|
|
ActiveRecord::IdentityMap.clear
|
|
|
|
end
|
2008-11-12 14:33:09 -05:00
|
|
|
end
|
2008-11-07 16:23:22 -05:00
|
|
|
|
2010-09-24 20:15:52 -04:00
|
|
|
ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
|
2005-10-14 23:02:28 -04:00
|
|
|
|
2008-11-12 14:33:09 -05:00
|
|
|
def create_fixtures(*table_names, &block)
|
|
|
|
Fixtures.create_fixtures(ActiveSupport::TestCase.fixture_path, table_names, {}, &block)
|
|
|
|
end
|
2005-10-15 13:05:55 -04:00
|
|
|
end
|
2008-01-09 13:50:06 -05:00
|
|
|
|
2010-02-25 19:48:36 -05:00
|
|
|
class ActionController::TestCase
|
|
|
|
setup do
|
2010-03-30 15:18:08 -04:00
|
|
|
@routes = Rails.application.routes
|
2010-02-25 19:48:36 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-02-25 20:51:56 -05:00
|
|
|
class ActionDispatch::IntegrationTest
|
2010-04-24 18:15:14 -04:00
|
|
|
setup do
|
|
|
|
@routes = Rails.application.routes
|
|
|
|
end
|
2010-02-25 20:51:56 -05:00
|
|
|
end
|