mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Set up fixtures in app's test_help
This commit is contained in:
parent
1d803e5189
commit
582aa2ead5
1 changed files with 8 additions and 7 deletions
|
@ -4,18 +4,19 @@ require_dependency 'application'
|
||||||
# so fixtures are loaded to the right database
|
# so fixtures are loaded to the right database
|
||||||
silence_warnings { RAILS_ENV = "test" }
|
silence_warnings { RAILS_ENV = "test" }
|
||||||
|
|
||||||
require 'test/unit'
|
|
||||||
require 'active_support/test_case'
|
|
||||||
require 'active_record/fixtures'
|
|
||||||
require 'action_controller/test_case'
|
|
||||||
require 'action_controller/integration'
|
require 'action_controller/integration'
|
||||||
require 'action_mailer/test_case' if defined?(ActionMailer)
|
require 'action_mailer/test_case' if defined?(ActionMailer)
|
||||||
|
|
||||||
Test::Unit::TestCase.fixture_path = RAILS_ROOT + "/test/fixtures/"
|
require 'active_record/fixtures'
|
||||||
ActionController::IntegrationTest.fixture_path = Test::Unit::TestCase.fixture_path
|
class ActiveSupport::TestCase
|
||||||
|
include ActiveRecord::TestFixtures
|
||||||
|
end
|
||||||
|
|
||||||
|
ActiveSupport::TestCase.fixture_path = "#{RAILS_ROOT}/test/fixtures/"
|
||||||
|
ActionController::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
|
||||||
|
|
||||||
def create_fixtures(*table_names)
|
def create_fixtures(*table_names)
|
||||||
Fixtures.create_fixtures(Test::Unit::TestCase.fixture_path, table_names)
|
Fixtures.create_fixtures(ActiveSupport::TestCase.fixture_path, table_names)
|
||||||
end
|
end
|
||||||
|
|
||||||
begin
|
begin
|
||||||
|
|
Loading…
Reference in a new issue