aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/has_many_associations_test.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-08-09 21:30:55 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-08-09 21:30:55 -0700
commit47f7c936a276269b8bff23bd992fa44e6868abc0 (patch)
tree006b3bd3e9ebede72feeda4a192300b2a609f5d5 /activerecord/test/cases/associations/has_many_associations_test.rb
parent7e3364ac4634f7017305c4bc725710ab0e7ba4c2 (diff)
downloadrails-47f7c936a276269b8bff23bd992fa44e6868abc0.tar.gz
rails-47f7c936a276269b8bff23bd992fa44e6868abc0.tar.bz2
rails-47f7c936a276269b8bff23bd992fa44e6868abc0.zip
Fix test dependency on taggings
Diffstat (limited to 'activerecord/test/cases/associations/has_many_associations_test.rb')
-rw-r--r--activerecord/test/cases/associations/has_many_associations_test.rb3
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