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/modules_test.rb | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'activerecord/test/modules_test.rb') diff --git a/activerecord/test/modules_test.rb b/activerecord/test/modules_test.rb index d9c9ae650c..f13d140b6d 100644 --- a/activerecord/test/modules_test.rb +++ b/activerecord/test/modules_test.rb @@ -2,12 +2,7 @@ require 'abstract_unit' require 'fixtures/company_in_module' class ModulesTest < Test::Unit::TestCase - def setup - create_fixtures "accounts" - create_fixtures "companies" - create_fixtures "projects" - create_fixtures "developers" - end + fixtures :accounts, :companies, :projects, :developers def test_module_spanning_associations assert MyApplication::Business::Firm.find_first.has_clients?, "Firm should have clients" @@ -25,4 +20,4 @@ class ModulesTest < Test::Unit::TestCase def test_associations_spanning_cross_modules assert MyApplication::Billing::Account.find(1).has_firm?, "37signals account should be able to backtrack" end -end \ No newline at end of file +end -- cgit v1.2.3