aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/modules_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/modules_test.rb')
-rw-r--r--activerecord/test/modules_test.rb9
1 files changed, 2 insertions, 7 deletions
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