Sha256: 8caa9d498b1c68d2ea589c539af2d7e61718e43269ab4552d61dc3b260232bef
Contents?: true
Size: 648 Bytes
Versions: 12
Compression:
Stored size: 648 Bytes
Contents
##################################################################### # tc_process.rb # # Test case for the Windows::Process module. ##################################################################### require 'windows/process' require 'test/unit' class TC_Windows_Process < Test::Unit::TestCase include Windows::Process def test_constants assert_equal(0x1F0FFF, PROCESS_ALL_ACCESS) end def test_methods assert_respond_to(self, :CreateProcess) end def test_helper_methods assert_respond_to(self, :windows_64?) assert_equal(true, [true, false].include?(windows_64?)) end end
Version data entries
12 entries across 12 versions & 1 rubygems