summaryrefslogtreecommitdiff
path: root/test/did_you_mean/spell_checking/test_method_name_check.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/did_you_mean/spell_checking/test_method_name_check.rb')
-rw-r--r--test/did_you_mean/spell_checking/test_method_name_check.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/did_you_mean/spell_checking/test_method_name_check.rb b/test/did_you_mean/spell_checking/test_method_name_check.rb
index f3a6b1c7c7..6e14e6acc4 100644
--- a/test/did_you_mean/spell_checking/test_method_name_check.rb
+++ b/test/did_you_mean/spell_checking/test_method_name_check.rb
@@ -137,4 +137,11 @@ class MethodNameCheckTest < Test::Unit::TestCase
assert_correction :yield, error.corrections
assert_match "Did you mean? yield", error.to_s
end
+
+ def test_does_not_suggest_yield
+ error = assert_raise(NoMethodError) { 1.yeild }
+
+ assert_correction [], error.corrections
+ assert_not_match(/Did you mean\? +yield/, error.to_s)
+ end if RUBY_ENGINE != "jruby"
end