mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
34ec7c5b49
* ext/-test-/win32/console/attribute.c (console_set_attribute): set console attribute. * test/-ext-/win32/test_console_attr.rb (reset): reset attributes. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47242 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
43 lines
883 B
Ruby
43 lines
883 B
Ruby
if /mswin|mingw/ =~ RUBY_PLATFORM and STDOUT.tty?
|
|
require '-test-/win32/console'
|
|
require 'io/console'
|
|
require 'test/unit'
|
|
|
|
class Test_Win32Console < Test::Unit::TestCase
|
|
def reset
|
|
STDOUT.console_attribute(7)
|
|
end
|
|
|
|
alias setup reset
|
|
alias teardown reset
|
|
|
|
def test_default
|
|
info = STDOUT.console_info
|
|
assert_equal(7, info.attr);
|
|
end
|
|
|
|
def test_reverse
|
|
print "\e[7m"
|
|
info = STDOUT.console_info
|
|
assert_equal(0x70, info.attr);
|
|
end
|
|
|
|
def test_bold
|
|
print "\e[1m"
|
|
info = STDOUT.console_info
|
|
assert_equal(0x8, info.attr&0x8);
|
|
end
|
|
|
|
def test_bold_reverse
|
|
print "\e[1;7m"
|
|
info = STDOUT.console_info
|
|
assert_equal(0xf0, info.attr);
|
|
end
|
|
|
|
def test_reverse_bold
|
|
print "\e[7;1m"
|
|
info = STDOUT.console_info
|
|
assert_equal(0xf0, info.attr);
|
|
end
|
|
end
|
|
end
|