mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/date/*.rb: imported additional tests and some adjustments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19622 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
06df4049ed
commit
1ac57f70e8
5 changed files with 157 additions and 4 deletions
21
test/date/test_date_compat.rb
Normal file
21
test/date/test_date_compat.rb
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue