Sha256: 004121512edb959f68f4b99bfaa04a142b121f2ceeaf1111430e7344d1d244d3
Contents?: true
Size: 614 Bytes
Versions: 1
Compression:
Stored size: 614 Bytes
Contents
##################################################################### # tc_msvcrt_time.rb # # Test case for the Windows::MSVCRT::Time module. ##################################################################### require 'windows/msvcrt/time' require 'test/unit' class MTimeFoo include Windows::MSVCRT::Time end class TC_Windows_MSVCRT_Time < Test::Unit::TestCase def setup @foo = MTimeFoo.new end def test_method_constants assert_not_nil(MTimeFoo::Asctime) end def test_asctime assert_respond_to(@foo, :asctime) end def teardown @foo = nil end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
windows-pr-1.1.3 | test/tc_msvcrt_time.rb |