Sha256: 4692bd7cb4516ed8b7c2549e7b004c9dad445a22d907af818c3485839db54e4f
Contents?: true
Size: 706 Bytes
Versions: 2
Compression:
Stored size: 706 Bytes
Contents
##################################################################### # tc_window_properties.rb # # Test case for the Windows::Window::Properties module. ##################################################################### require 'windows/window/properties' require 'minitest/autorun' class WindowPropertiesFoo include Windows::Window::Properties end class TC_Windows_Window_Properties < MiniTest::Test def setup @foo = WindowPropertiesFoo.new end def test_method_constants assert_not_nil(WindowPropertiesFoo::EnumProps) end def test_method_mixin assert_respond_to(@foo, :EnumProps) 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_window_properties.rb |
windows-pr-1.2.5 | test/tc_window_properties.rb |