1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/-ext-/win32/test_console_attr.rb
naruse 3e92b635fb Add frozen_string_literal: false for all files
When you change this to true, you may need to add more tests.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53141 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2015-12-16 05:07:31 +00:00

44 lines
914 B
Ruby

# frozen_string_literal: false
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