Sha256: 50d1ec2abbe4e7725eb3d1010cf30d17a5e884fb00b3ca0fa6df9ad4acee79a9
Contents?: true
Size: 687 Bytes
Versions: 1
Compression:
Stored size: 687 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::Unit::TestCase 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
windows-pr-1.2.4 | test/tc_window_properties.rb |