Sha256: cefa1fddeccad4ca94b29ef6d67ec0588556a2fa5719a8a0b7cbe07b3f942b5e
Contents?: true
Size: 859 Bytes
Versions: 2
Compression:
Stored size: 859 Bytes
Contents
##################################################################### # tc_shell.rb # # Test case for the Windows::Shell module. ##################################################################### require 'windows/shell' require 'minitest/autorun' class ShellFoo include Windows::Shell end class TC_Windows_Shell < MiniTest::Test def setup @foo = ShellFoo.new end def test_numeric_constants assert_equal(0, ShellFoo::CSIDL_DESKTOP) assert_equal(1, ShellFoo::CSIDL_INTERNET) assert_equal(2, ShellFoo::CSIDL_PROGRAMS) end def test_method_constants assert_not_nil(ShellFoo::DragQueryFile) assert_not_nil(ShellFoo::ExtractIcon) assert_not_nil(ShellFoo::ExtractIconEx) assert_not_nil(ShellFoo::ShellAbout) end def teardown @foo = nil end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
windows-pr-1.2.6 | test/tc_shell.rb |
windows-pr-1.2.5 | test/tc_shell.rb |