From 319eee0f4a13d29a82eeffa348b8a3b5685e2f6e Mon Sep 17 00:00:00 2001 From: aycabta Date: Tue, 30 Apr 2019 12:27:23 +0900 Subject: Use Encoding::UTF_8 if Encoding.default_external is Encoding::IBM437 --- test/reline/helper.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test') diff --git a/test/reline/helper.rb b/test/reline/helper.rb index 2dced82a12..74be79140c 100644 --- a/test/reline/helper.rb +++ b/test/reline/helper.rb @@ -5,6 +5,8 @@ require 'test/unit' RELINE_TEST_ENCODING ||= if ENV['RELINE_TEST_ENCODING'] Encoding.find(ENV['RELINE_TEST_ENCODING']) + elsif Encoding.default_external == Encoding::IBM437 + Encoding::UTF_8 else Encoding.default_external end -- cgit v1.2.3