summaryrefslogtreecommitdiff
path: root/test/did_you_mean/spell_checking/test_pattern_key_name_check.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/did_you_mean/spell_checking/test_pattern_key_name_check.rb')
-rw-r--r--test/did_you_mean/spell_checking/test_pattern_key_name_check.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/did_you_mean/spell_checking/test_pattern_key_name_check.rb b/test/did_you_mean/spell_checking/test_pattern_key_name_check.rb
deleted file mode 100644
index 2b0752a56a..0000000000
--- a/test/did_you_mean/spell_checking/test_pattern_key_name_check.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-require_relative '../helper'
-
-return if !defined?(::NoMatchingPatternKeyError)
-
-class PatternKeyNameCheckTest < Test::Unit::TestCase
- include DidYouMean::TestHelper
-
- def test_corrects_hash_key_name_with_single_pattern_match
- error = assert_raise(NoMatchingPatternKeyError) do
- eval(<<~RUBY, binding, __FILE__, __LINE__)
- hash = {foo: 1, bar: 2, baz: 3}
- hash => {fooo:}
- fooo = 1 # suppress "unused variable: fooo" warning
- RUBY
- end
-
- assert_correction ":foo", error.corrections
- assert_match "Did you mean? :foo", error.to_s
- end
-end