diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-08-27 07:51:30 -0700 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-08-27 07:51:30 -0700 |
commit | a10e2f17cac3aec0ae309a501fab3384e8bfe99c (patch) | |
tree | cf28d0b34d11c1b116d1bb43c78371ef0753ecd6 /activerecord/test | |
parent | 182f1d13aaaf716f873e385482d0092d126a531d (diff) | |
parent | c2e084ac486a715fb04d49e4c2c33f62b07535dd (diff) | |
download | rails-a10e2f17cac3aec0ae309a501fab3384e8bfe99c.tar.gz rails-a10e2f17cac3aec0ae309a501fab3384e8bfe99c.tar.bz2 rails-a10e2f17cac3aec0ae309a501fab3384e8bfe99c.zip |
Merge pull request #11945 from Mik-die/polymorphic-decorator
check class hierarchy with is_a? in PredicateBuilder.expand
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/relation/where_test.rb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/activerecord/test/cases/relation/where_test.rb b/activerecord/test/cases/relation/where_test.rb index d333be3560..3e460fa3d6 100644 --- a/activerecord/test/cases/relation/where_test.rb +++ b/activerecord/test/cases/relation/where_test.rb @@ -81,6 +81,31 @@ module ActiveRecord assert_equal expected.to_sql, actual.to_sql end + def test_decorated_polymorphic_where + treasure_decorator = Struct.new(:model) do + def self.method_missing(method, *args, &block) + Treasure.send(method, *args, &block) + end + + def is_a?(klass) + model.is_a?(klass) + end + + def method_missing(method, *args, &block) + model.send(method, *args, &block) + end + end + + treasure = Treasure.new + treasure.id = 1 + decorated_treasure = treasure_decorator.new(treasure) + + expected = PriceEstimate.where(estimate_of_type: 'Treasure', estimate_of_id: 1) + actual = PriceEstimate.where(estimate_of: decorated_treasure) + + assert_equal expected.to_sql, actual.to_sql + end + def test_aliased_attribute expected = Topic.where(heading: 'The First Topic') actual = Topic.where(title: 'The First Topic') |