aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/helper.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/activerecord/test/cases/helper.rb b/activerecord/test/cases/helper.rb
index 13988d5392..02b39d7480 100644
--- a/activerecord/test/cases/helper.rb
+++ b/activerecord/test/cases/helper.rb
@@ -6,6 +6,7 @@ require 'test/unit'
require 'active_record'
require 'active_record/test_case'
+require 'active_record/fixtures'
require 'connection'
# Show backtraces for deprecated behavior for quicker cleanup.
@@ -55,3 +56,10 @@ unless ENV['FIXTURE_DEBUG']
alias_method_chain :try_to_load_dependency, :silence
end
end
+
+class ActiveSupport::TestCase
+ include ActiveRecord::TestFixtures
+ self.fixture_path = FIXTURES_ROOT
+ self.use_instantiated_fixtures = false
+ self.use_transactional_fixtures = true
+end