aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2008-11-14 12:01:26 +0100
committerDavid Heinemeier Hansson <david@loudthinking.com>2008-11-14 12:01:26 +0100
commitff4ccb8334e4f5b5bdccbd5dc6876b4e43d9565e (patch)
tree852167cd0da69059f4e5f0d7003def38cb64ba6d /activerecord/lib/active_record
parentdb7daa04b858f224b8b34a5dc94fe5804c1c6400 (diff)
downloadrails-ff4ccb8334e4f5b5bdccbd5dc6876b4e43d9565e.tar.gz
rails-ff4ccb8334e4f5b5bdccbd5dc6876b4e43d9565e.tar.bz2
rails-ff4ccb8334e4f5b5bdccbd5dc6876b4e43d9565e.zip
Revert "Move fixtures settings from AR::TestCase to railties test_help" -- it broke all the tests!
This reverts commit 9a88ab64bb45ddb2bdcf80fab9203111d8f8abb4.
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r--activerecord/lib/active_record/test_case.rb10
1 files changed, 9 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/test_case.rb b/activerecord/lib/active_record/test_case.rb
index d5f43f56e6..eabf06fc3b 100644
--- a/activerecord/lib/active_record/test_case.rb
+++ b/activerecord/lib/active_record/test_case.rb
@@ -1,7 +1,15 @@
require "active_support/test_case"
-module ActiveRecord
+module ActiveRecord
class TestCase < ActiveSupport::TestCase #:nodoc:
+ 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