From 647900a44f21d8b86f4e93117c9118bd522226aa Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sat, 12 Sep 2026 23:11:02 +0900 Subject: [PATCH] Now module `IO::Console` is defined on all platforms --- test/io/console/test_io_console.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/io/console/test_io_console.rb b/test/io/console/test_io_console.rb index a5ee11a..727b497 100644 --- a/test/io/console/test_io_console.rb +++ b/test/io/console/test_io_console.rb @@ -10,7 +10,7 @@ class TestIO_Console < Test::Unit::TestCase def test_console_namespace assert_kind_of(Module, IO::Console) - end unless RUBY_ENGINE == "jruby" && RbConfig::CONFIG["host_os"] !~ /mswin|mingw/ + end HOST_OS = RbConfig::CONFIG['host_os']