diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-08-09 21:30:55 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-08-09 21:30:55 -0700 |
commit | 47f7c936a276269b8bff23bd992fa44e6868abc0 (patch) | |
tree | 006b3bd3e9ebede72feeda4a192300b2a609f5d5 /activerecord/test/cases/associations | |
parent | 7e3364ac4634f7017305c4bc725710ab0e7ba4c2 (diff) | |
download | rails-47f7c936a276269b8bff23bd992fa44e6868abc0.tar.gz rails-47f7c936a276269b8bff23bd992fa44e6868abc0.tar.bz2 rails-47f7c936a276269b8bff23bd992fa44e6868abc0.zip |
Fix test dependency on taggings
Diffstat (limited to 'activerecord/test/cases/associations')
-rw-r--r-- | activerecord/test/cases/associations/has_many_associations_test.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/has_many_associations_test.rb b/activerecord/test/cases/associations/has_many_associations_test.rb index ee39cf695e..f7178f2c5e 100644 --- a/activerecord/test/cases/associations/has_many_associations_test.rb +++ b/activerecord/test/cases/associations/has_many_associations_test.rb @@ -10,11 +10,12 @@ require 'models/author' require 'models/comment' require 'models/person' require 'models/reader' +require 'models/tagging' class HasManyAssociationsTest < ActiveRecord::TestCase fixtures :accounts, :categories, :companies, :developers, :projects, :developers_projects, :topics, :authors, :comments, :author_addresses, - :people, :posts, :readers + :people, :posts, :readers, :taggings def setup Client.destroyed_client_ids.clear |