Sha256: 3a79f9279af58f8bfda007c3615bd2f6a3d8aae779668f90c2c377ad76bbbb43

Contents?: true

Size: 505 Bytes

Versions: 2

Compression:

Stored size: 505 Bytes

Contents

#####################################################################
# tc_msvcrt_time.rb
#
# Test case for the Windows::MSVCRT::Time module.
#####################################################################
require 'windows/msvcrt/time'
require 'minitest/autorun'

class TC_Windows_MSVCRT_Time < MiniTest::Test
  include Windows::MSVCRT::Time

  def test_method_constants
    assert_not_nil(Asctime)
  end

  def test_asctime
    assert(self.respond_to?(:asctime, true))
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
windows-pr-1.2.6 test/tc_msvcrt_time.rb
windows-pr-1.2.5 test/tc_msvcrt_time.rb