diff options
author | Jon Leighton <j@jonathanleighton.com> | 2010-10-19 17:29:19 +0100 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2010-10-19 17:29:19 +0100 |
commit | 7ee33b80a2048ec3801f02018b0ea81d2abe0011 (patch) | |
tree | bc11630ed846fe40ebf3668eed37c1ec96ded05c /activerecord/test | |
parent | 82b889f7d37249adaa606558d4c05356b3e84d9a (diff) | |
download | rails-7ee33b80a2048ec3801f02018b0ea81d2abe0011.tar.gz rails-7ee33b80a2048ec3801f02018b0ea81d2abe0011.tar.bz2 rails-7ee33b80a2048ec3801f02018b0ea81d2abe0011.zip |
Remove various comments and code which were just being used during the development of nested through association support (OMFGZ, I might just have nearly finished this\!
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/associations/nested_has_many_through_associations_test.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/activerecord/test/cases/associations/nested_has_many_through_associations_test.rb b/activerecord/test/cases/associations/nested_has_many_through_associations_test.rb index 3a4601b032..23fa1709ce 100644 --- a/activerecord/test/cases/associations/nested_has_many_through_associations_test.rb +++ b/activerecord/test/cases/associations/nested_has_many_through_associations_test.rb @@ -23,11 +23,6 @@ require 'models/categorization' require 'models/membership' require 'models/essay' -# NOTE: Some of these tests might not really test "nested" HMT associations, as opposed to ones which -# are just one level deep. But it's all the same thing really, as the "nested" code is being -# written in a generic way which applies to "non-nested" HMT associations too. So let's just shove -# all useful tests in here for now and then work out where they ought to live properly later. - class NestedHasManyThroughAssociationsTest < ActiveRecord::TestCase fixtures :authors, :books, :posts, :subscriptions, :subscribers, :tags, :taggings, :people, :readers, :references, :jobs, :ratings, :comments, :members, :member_details, |