aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/finder_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/finder_test.rb')
-rw-r--r--activerecord/test/finder_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/test/finder_test.rb b/activerecord/test/finder_test.rb
index cf2dfcbb24..d31d859b44 100644
--- a/activerecord/test/finder_test.rb
+++ b/activerecord/test/finder_test.rb
@@ -293,6 +293,13 @@ class FinderTest < Test::Unit::TestCase
def test_find_by_one_missing_attribute
assert_raises(NoMethodError) { Topic.find_by_undertitle("The First Topic!") }
end
+
+ def test_find_by_invalid_method_syntax
+ assert_raises(NoMethodError) { Topic.fail_to_find_by_title("The First Topic") }
+ assert_raises(NoMethodError) { Topic.find_by_title?("The First Topic") }
+ assert_raises(NoMethodError) { Topic.fail_to_find_or_create_by_title("Nonexistent Title") }
+ assert_raises(NoMethodError) { Topic.find_or_create_by_title?("Nonexistent Title") }
+ end
def test_find_by_two_attributes
assert_equal topics(:first), Topic.find_by_title_and_author_name("The First Topic", "David")