summaryrefslogtreecommitdiff
path: root/test/-ext-/win32/test_console_attr.rb
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-01-08 19:07:16 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-01-09 22:38:06 +0900
commit590dc06e3840cc7b00d80ccaac9fbf42573428f8 (patch)
treee5f6aa316246401b8d89e7419ddf0976238c04b5 /test/-ext-/win32/test_console_attr.rb
parent161a20df28dd09ff35a32a7e2b7ce6cab7079707 (diff)
Get rid of defining methods for tests in core classes
Not to interfere in other tests.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4043
Diffstat (limited to 'test/-ext-/win32/test_console_attr.rb')
-rw-r--r--test/-ext-/win32/test_console_attr.rb14
1 files changed, 7 insertions, 7 deletions
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