summaryrefslogtreecommitdiff
path: root/test/did_you_mean/core_ext
diff options
context:
space:
mode:
authorYuki Nishijima <yk.nishijima@gmail.com>2021-12-21 19:03:10 +0900
committerYuki Nishijima <yk.nishijima@gmail.com>2021-12-21 19:03:25 +0900
commit505dfae05d56d844ea150676edb87850a406d071 (patch)
tree76ecd819384b101f76c7d4179922ea41bf4a6e98 /test/did_you_mean/core_ext
parent12fa4f2aceff06aeff028a3c72ec8791f78bfdb0 (diff)
* gems/default_gems: Sync did_you_mean
Diffstat (limited to 'test/did_you_mean/core_ext')
-rw-r--r--test/did_you_mean/core_ext/test_name_error_extension.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/did_you_mean/core_ext/test_name_error_extension.rb b/test/did_you_mean/core_ext/test_name_error_extension.rb
index 9dc08dbde3..91871cda9a 100644
--- a/test/did_you_mean/core_ext/test_name_error_extension.rb
+++ b/test/did_you_mean/core_ext/test_name_error_extension.rb
@@ -1,7 +1,7 @@
require_relative '../helper'
class NameErrorExtensionTest < Test::Unit::TestCase
- SPELL_CHECKERS = DidYouMean::SPELL_CHECKERS
+ SPELL_CHECKERS = DidYouMean.spell_checkers
class TestSpellChecker
def initialize(*); end
@@ -9,13 +9,14 @@ class NameErrorExtensionTest < Test::Unit::TestCase
end
def setup
- @org, SPELL_CHECKERS['NameError'] = SPELL_CHECKERS['NameError'], TestSpellChecker
+ @original_spell_checker = DidYouMean.spell_checkers['NameError']
+ DidYouMean.correct_error(NameError, TestSpellChecker)
@error = assert_raise(NameError){ doesnt_exist }
end
def teardown
- SPELL_CHECKERS['NameError'] = @org
+ DidYouMean.correct_error(NameError, @original_spell_checker)
end
def test_message