Move fixtures settings from AR::TestCase to railties test_help

This commit is contained in:
Jeremy Kemper
2008-11-12 11:33:09 -08:00
parent a0e7b99443
commit b17eb65d00
2 changed files with 15 additions and 19 deletions

View File

@@ -1,18 +1,8 @@
require "active_support/test_case"
require "active_record/fixtures"
module ActiveRecord
module ActiveRecord
class TestCase < ActiveSupport::TestCase #:nodoc:
include TestFixtures
self.fixture_path = FIXTURES_ROOT
self.use_instantiated_fixtures = false
self.use_transactional_fixtures = true
def create_fixtures(*table_names, &block)
Fixtures.create_fixtures(FIXTURES_ROOT, table_names, {}, &block)
end
def assert_date_from_db(expected, actual, message = nil)
# SQL Server doesn't have a separate column type just for dates,
# so the time is in the string and incorrectly formatted

View File

@@ -7,16 +7,22 @@ silence_warnings { RAILS_ENV = "test" }
require 'action_controller/integration'
require 'action_mailer/test_case' if defined?(ActionMailer)
require 'active_record/fixtures'
class ActiveSupport::TestCase
include ActiveRecord::TestFixtures
end
if defined?(ActiveRecord)
require 'active_record/test_case'
require 'active_record/fixtures'
ActiveSupport::TestCase.fixture_path = "#{RAILS_ROOT}/test/fixtures/"
ActionController::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
class ActiveSupport::TestCase
include ActiveRecord::TestFixtures
self.fixture_path = "#{RAILS_ROOT}/test/fixtures/"
self.use_instantiated_fixtures = false
self.use_transactional_fixtures = true
end
def create_fixtures(*table_names)
Fixtures.create_fixtures(ActiveSupport::TestCase.fixture_path, table_names)
ActionController::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
def create_fixtures(*table_names, &block)
Fixtures.create_fixtures(ActiveSupport::TestCase.fixture_path, table_names, {}, &block)
end
end
begin