From 590dc06e3840cc7b00d80ccaac9fbf42573428f8 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Fri, 8 Jan 2021 19:07:16 +0900 Subject: Get rid of defining methods for tests in core classes Not to interfere in other tests. --- test/-ext-/win32/test_console_attr.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'test/-ext-/win32') diff --git a/test/-ext-/win32/test_console_attr.rb b/test/-ext-/win32/test_console_attr.rb index 35d425ded7..fe72d988d5 100644 --- a/test/-ext-/win32/test_console_attr.rb +++ b/test/-ext-/win32/test_console_attr.rb @@ -8,7 +8,7 @@ if /mswin|mingw/ =~ RUBY_PLATFORM and STDOUT.tty? REVERSE_VIDEO = Bug::Win32::REVERSE_VIDEO def reverse_video(fore, back = 0x0) - info = STDOUT.console_info + info = Bug::Win32.console_info(STDOUT) if (info.attr & REVERSE_VIDEO) == 0 (fore << 4) | back else @@ -17,38 +17,38 @@ if /mswin|mingw/ =~ RUBY_PLATFORM and STDOUT.tty? end def reset - STDOUT.console_attribute(7) + Bug::Win32.console_attribute(STDOUT, 7) end alias setup reset alias teardown reset def test_default - info = STDOUT.console_info + info = Bug::Win32.console_info(STDOUT) assert_equal(7, info.attr); end def test_reverse print "\e[7m" - info = STDOUT.console_info + info = Bug::Win32.console_info(STDOUT) assert_equal(reverse_video(0x7), info.attr); end def test_bold print "\e[1m" - info = STDOUT.console_info + info = Bug::Win32.console_info(STDOUT) assert_equal(0x8, info.attr&0x8); end def test_bold_reverse print "\e[1;7m" - info = STDOUT.console_info + info = Bug::Win32.console_info(STDOUT) assert_equal(reverse_video(0xf), info.attr); end def test_reverse_bold print "\e[7;1m" - info = STDOUT.console_info + info = Bug::Win32.console_info(STDOUT) assert_equal(reverse_video(0xf), info.attr); end end -- cgit v1.2.3