aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/relations_test.rb
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2009-12-29 12:27:40 +0530
committerPratik Naik <pratiknaik@gmail.com>2009-12-29 12:27:40 +0530
commitbc933d0fa1b3a89deaf3e7c74d7717eb8fc7152a (patch)
tree34b05f17a1f79715c1b59f1fbda20f568745d303 /activerecord/test/cases/relations_test.rb
parentf290e685f0497427b348a2fae760300429d5f0cd (diff)
downloadrails-bc933d0fa1b3a89deaf3e7c74d7717eb8fc7152a.tar.gz
rails-bc933d0fa1b3a89deaf3e7c74d7717eb8fc7152a.tar.bz2
rails-bc933d0fa1b3a89deaf3e7c74d7717eb8fc7152a.zip
Make sure Relation responds to dynamic finder methods
Diffstat (limited to 'activerecord/test/cases/relations_test.rb')
-rw-r--r--activerecord/test/cases/relations_test.rb10
1 files changed, 9 insertions, 1 deletions
diff --git a/activerecord/test/cases/relations_test.rb b/activerecord/test/cases/relations_test.rb
index c3cce8c5f2..1c344c0b48 100644
--- a/activerecord/test/cases/relations_test.rb
+++ b/activerecord/test/cases/relations_test.rb
@@ -142,7 +142,15 @@ class RelationTest < ActiveRecord::TestCase
relation = Topic.scoped
["map", "uniq", "sort", "insert", "delete", "update"].each do |method|
- assert relation.respond_to?(method), "Topic.all should respond to #{method.inspect}"
+ assert relation.respond_to?(method), "Topic.scoped should respond to #{method.inspect}"
+ end
+ end
+
+ def test_respond_to_dynamic_finders
+ relation = Topic.scoped
+
+ ["find_by_title", "find_by_title_and_author_name", "find_or_create_by_title", "find_or_initialize_by_title_and_author_name"].each do |method|
+ assert relation.respond_to?(method), "Topic.scoped should respond to #{method.inspect}"
end
end