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
|
|
|
|
2012-12-28 14:17:37 -05:00
|
|
|
require 'active_support/testing/autorun'
|
2010-03-23 12:48:29 -04:00
|
|
|
require 'active_support/test_case'
|
2014-04-10 13:57:46 -04:00
|
|
|
require 'action_controller'
|
2010-03-23 12:48:29 -04:00
|
|
|
require 'action_controller/test_case'
|
|
|
|
require 'action_dispatch/testing/integration'
|
2013-07-13 06:49:31 -04:00
|
|
|
require 'rails/generators/test_case'
|
2009-12-02 23:01:01 -05:00
|
|
|
|
2012-10-05 22:42:11 -04:00
|
|
|
# Config Rails backtrace in tests.
|
|
|
|
require 'rails/backtrace_cleaner'
|
2013-10-28 08:44:17 -04:00
|
|
|
if ENV["BACKTRACE"].nil?
|
2013-12-18 02:51:24 -05:00
|
|
|
Minitest.backtrace_filter = Rails.backtrace_cleaner
|
2013-10-28 08:44:17 -04:00
|
|
|
end
|
2012-10-05 22:42:11 -04:00
|
|
|
|
2011-09-30 12:05:53 -04:00
|
|
|
if defined?(ActiveRecord::Base)
|
2013-12-29 06:05:04 -05:00
|
|
|
ActiveRecord::Migration.maintain_test_schema!
|
|
|
|
|
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/"
|
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
|
|
|
|
2012-05-12 07:17:03 -04:00
|
|
|
def create_fixtures(*fixture_set_names, &block)
|
|
|
|
FixtureSet.create_fixtures(ActiveSupport::TestCase.fixture_path, fixture_set_names, {}, &block)
|
2008-11-12 14:33:09 -05:00
|
|
|
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
|