aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/reflection_test.rb
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2007-09-03 00:17:09 +0000
committerMichael Koziarski <michael@koziarski.com>2007-09-03 00:17:09 +0000
commit6246fad19a5ec747f5914c142b8631af212d47ea (patch)
tree7693248f7fd9e42a69bd13b4bbb94c4ed2d576e9 /activerecord/test/reflection_test.rb
parentf0dbd22c4647bf8e37fd9b58ce6652aaca27376e (diff)
downloadrails-6246fad19a5ec747f5914c142b8631af212d47ea.tar.gz
rails-6246fad19a5ec747f5914c142b8631af212d47ea.tar.bz2
rails-6246fad19a5ec747f5914c142b8631af212d47ea.zip
Remove deprecated functionality from edge rails. Closes #9387 [lifofifo]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7402 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/reflection_test.rb')
-rw-r--r--activerecord/test/reflection_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/reflection_test.rb b/activerecord/test/reflection_test.rb
index 1ed5c2610c..eca8b5e989 100644
--- a/activerecord/test/reflection_test.rb
+++ b/activerecord/test/reflection_test.rb
@@ -159,8 +159,8 @@ class ReflectionTest < Test::Unit::TestCase
end
def test_reflection_of_all_associations
- assert_equal 17, Firm.reflect_on_all_associations.size
- assert_equal 15, Firm.reflect_on_all_associations(:has_many).size
+ assert_equal 16, Firm.reflect_on_all_associations.size
+ assert_equal 14, Firm.reflect_on_all_associations(:has_many).size
assert_equal 2, Firm.reflect_on_all_associations(:has_one).size
assert_equal 0, Firm.reflect_on_all_associations(:belongs_to).size
end