PageRenderTime 46ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/vendor/gems/facets-2.4.5/test/core/time/test_to_time.rb

https://bitbucket.org/mediashelf/fedora-migrator
Ruby | 12 lines | 8 code | 4 blank | 0 comment | 0 complexity | a8d3f20d546be917045bf76059e32cfe MD5 | raw file
Possible License(s): GPL-3.0, GPL-2.0, IPL-1.0, AGPL-1.0, LGPL-3.0
  1. require 'facets/time/to_time'
  2. require 'test/unit'
  3. class TestTimeConversion < Test::Unit::TestCase
  4. def test_to_time
  5. t = Time.now #parse('4/20/2005 15:37')
  6. assert_instance_of( ::Time, t.to_time )
  7. end
  8. end