c358389f25
Sync with latest Instiki Trunk (Updates Rails to 1.2.2)
20 lines
628 B
Ruby
20 lines
628 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'
|
|
require 'action_web_service/test_invoke'
|
|
require 'breakpoint'
|
|
|
|
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
|