2006-08-08 18:29:57 -04:00
|
|
|
require_dependency 'application'
|
2005-10-14 23:02:28 -04:00
|
|
|
|
2006-11-27 00:19:15 -05:00
|
|
|
# Make double-sure the RAILS_ENV is set to test,
|
2005-11-09 10:11:55 -05:00
|
|
|
# so fixtures are loaded to the right database
|
|
|
|
silence_warnings { RAILS_ENV = "test" }
|
|
|
|
|
2005-10-14 23:02:28 -04:00
|
|
|
require 'test/unit'
|
|
|
|
require 'active_record/fixtures'
|
|
|
|
require 'action_controller/test_process'
|
2006-03-18 09:27:36 -05:00
|
|
|
require 'action_controller/integration'
|
2005-10-14 23:02:28 -04:00
|
|
|
require 'action_web_service/test_invoke'
|
|
|
|
require 'breakpoint'
|
|
|
|
|
2005-10-15 13:05:55 -04:00
|
|
|
Test::Unit::TestCase.fixture_path = RAILS_ROOT + "/test/fixtures/"
|
2006-11-27 00:19:15 -05:00
|
|
|
ActionController::IntegrationTest.fixture_path = Test::Unit::TestCase.fixture_path
|
2005-10-14 23:02:28 -04:00
|
|
|
|
2005-10-15 09:18:17 -04:00
|
|
|
def create_fixtures(*table_names)
|
2005-10-15 13:05:55 -04:00
|
|
|
Fixtures.create_fixtures(RAILS_ROOT + "/test/fixtures", table_names)
|
|
|
|
end
|