summaryrefslogtreecommitdiff
path: root/jni/ruby/test/date/test_date_compat.rb
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/test/date/test_date_compat.rb
Fresh start
Diffstat (limited to 'jni/ruby/test/date/test_date_compat.rb')
-rw-r--r--jni/ruby/test/date/test_date_compat.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/jni/ruby/test/date/test_date_compat.rb b/jni/ruby/test/date/test_date_compat.rb
new file mode 100644
index 0000000..8284007
--- /dev/null
+++ b/jni/ruby/test/date/test_date_compat.rb
@@ -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