Sha256: 6f408885a1026b41c9896d6af66fde486fb55ab433eb09789a02671dc80e4dda
Contents?: true
Size: 566 Bytes
Versions: 56
Compression:
Stored size: 566 Bytes
Contents
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
Version data entries
56 entries across 56 versions & 1 rubygems