Sha256: a90774cf5243d98ba961c30bdc9df9ab5c1beeae55ab31df9b5e13b2c8d617ae
Contents?: true
Size: 706 Bytes
Versions: 14
Compression:
Stored size: 706 Bytes
Contents
##################################################################### # test_ntfs_winternl.rb # # Test case for the Windows::NTFS::Winternl module. ##################################################################### require "windows/ntfs/winternl" require "test/unit" class WinternlFoo include Windows::NTFS::Winternl end class TC_Windows_NTFS_Winternl < Test::Unit::TestCase def setup @foo = WinternlFoo.new end def test_numeric_constants assert_equal(8, WinternlFoo::FileAccessInformation) end def test_method_constants assert_not_nil(WinternlFoo::NtQueryInformationFile) end def teardown @foo = nil end end
Version data entries
14 entries across 14 versions & 1 rubygems