From 2c0fa3208859aed2c1fd0ce54c8d5215d11d0c75 Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Fri, 10 Jun 2005 14:58:02 +0000 Subject: Do not use instantiated fixtures (in general) in tests. Also, support the use of transactional fixtures by setting the AR_TX_FIXTURES environment variable to "yes". git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1399 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/thread_safety_test.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'activerecord/test/thread_safety_test.rb') diff --git a/activerecord/test/thread_safety_test.rb b/activerecord/test/thread_safety_test.rb index 635240c6af..c57c352afc 100644 --- a/activerecord/test/thread_safety_test.rb +++ b/activerecord/test/thread_safety_test.rb @@ -2,8 +2,11 @@ require 'abstract_unit' require 'fixtures/topic' class ThreadSafetyTest < Test::Unit::TestCase + self.use_transactional_fixtures = false + + fixtures :topics + def setup - @topics = create_fixtures "topics" @threads = [] end -- cgit v1.2.3