mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
70ac560e42
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6611 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
17 lines
566 B
Ruby
17 lines
566 B
Ruby
require_dependency 'application'
|
|
|
|
# Make double-sure the RAILS_ENV is set to test,
|
|
# so fixtures are loaded to the right database
|
|
silence_warnings { RAILS_ENV = "test" }
|
|
|
|
require 'test/unit'
|
|
require 'active_record/fixtures'
|
|
require 'action_controller/test_process'
|
|
require 'action_controller/integration'
|
|
|
|
Test::Unit::TestCase.fixture_path = RAILS_ROOT + "/test/fixtures/"
|
|
ActionController::IntegrationTest.fixture_path = Test::Unit::TestCase.fixture_path
|
|
|
|
def create_fixtures(*table_names)
|
|
Fixtures.create_fixtures(RAILS_ROOT + "/test/fixtures", table_names)
|
|
end
|