diff options
author | Emilio Tagua <miloops@gmail.com> | 2008-12-02 13:47:53 -0300 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2008-12-18 19:19:36 +0000 |
commit | 9cf6b1b15e6335134a5af5d9d6296f8d9242e005 (patch) | |
tree | 7e3668de56ac5dfaa7902bf57b42329467c0d1a0 /activerecord/test | |
parent | 707d0dd3e1e8df7771073670e4257d933d2818f9 (diff) | |
download | rails-9cf6b1b15e6335134a5af5d9d6296f8d9242e005.tar.gz rails-9cf6b1b15e6335134a5af5d9d6296f8d9242e005.tar.bz2 rails-9cf6b1b15e6335134a5af5d9d6296f8d9242e005.zip |
Add missing model files so tests can run isolated [#1506 state:resolved]
Signed-off-by: Frederick Cheung <frederick.cheung@gmail.com>
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/associations/has_many_through_associations_test.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/activerecord/test/cases/associations/has_many_through_associations_test.rb b/activerecord/test/cases/associations/has_many_through_associations_test.rb index a07f4bcbdd..0bfda337b2 100644 --- a/activerecord/test/cases/associations/has_many_through_associations_test.rb +++ b/activerecord/test/cases/associations/has_many_through_associations_test.rb @@ -3,6 +3,9 @@ require 'models/post' require 'models/person' require 'models/reader' require 'models/comment' +require 'models/tag' +require 'models/tagging' +require 'models/author' class HasManyThroughAssociationsTest < ActiveRecord::TestCase fixtures :posts, :readers, :people, :comments, :authors |