summaryrefslogtreecommitdiff
path: root/test/did_you_mean/spell_checking
diff options
context:
space:
mode:
authorYuki Nishijima <yk.nishijima@gmail.com>2020-05-22 17:17:10 -0400
committerYuki Nishijima <yk.nishijima@gmail.com>2020-06-06 13:02:08 -0400
commite5f54465284b4505042fca10ace998e1d29c2313 (patch)
tree3770bc320b3cb7fdd7e5406bb1fbcd5c4c705c77 /test/did_you_mean/spell_checking
parent0c00a4176ba353d59d8c991428574ef2c2676674 (diff)
Sync did_you_mean
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3135
Diffstat (limited to 'test/did_you_mean/spell_checking')
-rw-r--r--test/did_you_mean/spell_checking/test_method_name_check.rb7
-rw-r--r--test/did_you_mean/spell_checking/test_require_path_check.rb32
2 files changed, 39 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
diff --git a/test/did_you_mean/spell_checking/test_require_path_check.rb b/test/did_you_mean/spell_checking/test_require_path_check.rb
new file mode 100644
index 0000000000..f67fab0568
--- /dev/null
+++ b/test/did_you_mean/spell_checking/test_require_path_check.rb
@@ -0,0 +1,32 @@
+require_relative '../helper'
+
+return if !(RUBY_VERSION >= '2.8.0')
+
+class RequirePathCheckTest < Test::Unit::TestCase
+ include DidYouMean::TestHelper
+
+ def test_load_error_from_require_has_suggestions
+ error = assert_raise LoadError do
+ require 'open_struct'
+ end
+
+ assert_correction 'ostruct', error.corrections
+ assert_match "Did you mean? ostruct", error.to_s
+ end
+
+ def test_load_error_from_require_for_nested_files_has_suggestions
+ error = assert_raise LoadError do
+ require 'net/htt'
+ end
+
+ assert_correction 'net/http', error.corrections
+ assert_match "Did you mean? net/http", error.to_s
+
+ error = assert_raise LoadError do
+ require 'net-http'
+ end
+
+ assert_correction ['net/http', 'net/https'], error.corrections
+ assert_match "Did you mean? net/http", error.to_s
+ end
+end