mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
3e92b635fb
When you change this to true, you may need to add more tests. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53141 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
22 lines
943 B
Ruby
22 lines
943 B
Ruby
# frozen_string_literal: false
|
|
require 'test/unit'
|
|
require 'date'
|
|
|
|
class TestDateCompat < Test::Unit::TestCase
|
|
|
|
def test_compat
|
|
assert_equal(DateTime.new, Date.new)
|
|
assert_equal(DateTime.new(2002,3,19), Date.new(2002,3,19))
|
|
assert_equal(DateTime.new(2002,3,19, 0,0,0), Date.new(2002,3,19))
|
|
assert_equal(DateTime.new(2002,3,19, 0,0,0, 0), Date.new(2002,3,19))
|
|
assert_equal(DateTime.new(2002,3,19, 0,0,0, 0.to_r), Date.new(2002,3,19))
|
|
assert_equal(DateTime.new(2002,3,19, 0,0,0, 0, Date::GREGORIAN), Date.new(2002,3,19, Date::GREGORIAN))
|
|
assert_equal(DateTime.new(2002,3,19, 0,0,0, 0, Date::JULIAN), Date.new(2002,3,19, Date::JULIAN))
|
|
|
|
assert(Date.new(2002,3,19) != DateTime.new(2002,3,19, 12,0,0))
|
|
assert(Date.new(2002,3,19) != DateTime.new(2002,3,19, 0,0,1))
|
|
assert(Date.new(2002,3,19) === DateTime.new(2002,3,19, 12,0,0))
|
|
assert(Date.new(2002,3,19) === DateTime.new(2002,3,19, 0,0,1))
|
|
end
|
|
|
|
end
|