instiki/vendor/rails/railties/lib/test_help.rb

20 lines
628 B
Ruby
Raw Normal View History

require_dependency 'application'
2007-01-22 14:43:50 +01:00
# Make double-sure the RAILS_ENV is set to test,
2007-01-22 14:43:50 +01:00
# 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
2007-01-22 14:43:50 +01:00
def create_fixtures(*table_names)
Fixtures.create_fixtures(RAILS_ROOT + "/test/fixtures", table_names)
end