* 2022-01-18 [ci skip]
[ruby-80x24.org.git] / test / nkf / test_nkf.rb
blobeb51bf8e7d5f71ab7f4ede3b8b1d5b694ff57362
1 # frozen_string_literal: false
2 require 'test/unit'
3 require 'nkf'
5 class TestNKF < Test::Unit::TestCase
6   EUC_STR = "\xa5\xaa\xa5\xd6\xa5\xb8\xa5\xa7\xa5\xaf\xa5\xc8\xbb\xd8\xb8\xfe\
7 \xa5\xb9\xa5\xaf\xa5\xea\xa5\xd7\xa5\xc8\xb8\xc0\xb8\xec\
8 Ruby"
10   def test_guess
11     str_euc = EUC_STR
12     str_jis = NKF.nkf('-j', str_euc)
13     assert_equal(::NKF::JIS, NKF.guess(str_jis))
14     assert_equal(::NKF::EUC, NKF.guess(str_euc))
15   end
17   def test_ruby_dev_36909
18     assert_nothing_raised do
19       100.times { NKF.nkf("--oc=eucJP-nkf", "foo") }
20     end
21   end
23 end