Sha256: 6fc073dc56b69787b83e6466fdf8a3d6d6224f4aa56a9e6bca3ab1cd40101b11
Contents?: true
Size: 839 Bytes
Versions: 2
Compression:
Stored size: 839 Bytes
Contents
##################################################################### # tc_gdi_metafile.rb # # Test case for the Windows::GDI::MetaFile module. ##################################################################### require 'windows/gdi/metafile' require 'minitest/autorun' class TC_Windows_GDI_MetaFile < MiniTest::Test include Windows::GDI::MetaFile def test_methods assert_respond_to(self, :CloseEnhMetaFile) assert_respond_to(self, :CloseMetaFile) assert_respond_to(self, :CopyEnhMetaFile) assert_respond_to(self, :CopyMetaFile) assert_respond_to(self, :CreateEnhMetaFile) assert_respond_to(self, :CreateMetaFile) assert_respond_to(self, :DeleteEnhMetaFile) assert_respond_to(self, :DeleteMetaFile) assert_respond_to(self, :EnumEnhMetaFile) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
windows-pr-1.2.6 | test/tc_gdi_metafile.rb |
windows-pr-1.2.5 | test/tc_gdi_metafile.rb |