diff options
author | Jon Leighton <j@jonathanleighton.com> | 2012-04-11 16:18:36 -0700 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2012-04-11 16:18:36 -0700 |
commit | 19ecde00ff8a72c0c09685525c9d1eace79e8d75 (patch) | |
tree | cf3ddeedc5170a9233e6d8ec2ff8affa762ab696 | |
parent | ddefdd70860f68545a6e4195b184a26a1303f517 (diff) | |
parent | bfb9b7165ef4cb18835f65be600778bd8b1d6d11 (diff) | |
download | rails-19ecde00ff8a72c0c09685525c9d1eace79e8d75.tar.gz rails-19ecde00ff8a72c0c09685525c9d1eace79e8d75.tar.bz2 rails-19ecde00ff8a72c0c09685525c9d1eace79e8d75.zip |
Merge pull request #5720 from kennyj/should_use_klass_method
Get a properly aliased_table_name, when we use a polymorphic association.
-rw-r--r-- | activerecord/lib/active_record/associations/association.rb | 2 | ||||
-rw-r--r-- | activerecord/test/cases/associations/belongs_to_associations_test.rb | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/association.rb b/activerecord/lib/active_record/associations/association.rb index fb0ca15c23..3c41a303d3 100644 --- a/activerecord/lib/active_record/associations/association.rb +++ b/activerecord/lib/active_record/associations/association.rb @@ -39,7 +39,7 @@ module ActiveRecord # post.comments.aliased_table_name # => "comments" # def aliased_table_name - reflection.klass.table_name + klass.table_name end # Resets the \loaded flag to +false+ and sets the \target to +nil+. diff --git a/activerecord/test/cases/associations/belongs_to_associations_test.rb b/activerecord/test/cases/associations/belongs_to_associations_test.rb index 1160d236c9..9dd041af81 100644 --- a/activerecord/test/cases/associations/belongs_to_associations_test.rb +++ b/activerecord/test/cases/associations/belongs_to_associations_test.rb @@ -168,6 +168,7 @@ class BelongsToAssociationsTest < ActiveRecord::TestCase sponsor.sponsorable = Member.new :name => "Bert" assert_equal Member, sponsor.association(:sponsorable).send(:klass) + assert_equal "members", sponsor.association(:sponsorable).aliased_table_name end def test_with_polymorphic_and_condition |