1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/date/test_date_marshal.rb
shyouhei b57915eddc Add FrozenError as a subclass of RuntimeError
FrozenError will be used instead of RuntimeError for exceptions
raised when there is an attempt to modify a frozen object. The
reason for this change is to differentiate exceptions related
to frozen objects from generic exceptions such as those generated
by Kernel#raise without an exception class.

From: Jeremy Evans <code@jeremyevans.net>
Signed-off-by: Urabe Shyouhei <shyouhei@ruby-lang.org>


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61131 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2017-12-12 00:46:34 +00:00

42 lines
904 B
Ruby

# frozen_string_literal: true
require 'test/unit'
require 'date'
class TestDateMarshal < Test::Unit::TestCase
def test_marshal
d = Date.new
m = Marshal.dump(d)
d2 = Marshal.load(m)
assert_equal(d, d2)
assert_equal(d.start, d2.start)
assert_instance_of(String, d2.to_s)
d = Date.today
m = Marshal.dump(d)
d2 = Marshal.load(m)
assert_equal(d, d2)
assert_equal(d.start, d2.start)
assert_instance_of(String, d2.to_s)
d = DateTime.now
m = Marshal.dump(d)
d2 = Marshal.load(m)
assert_equal(d, d2)
assert_equal(d.start, d2.start)
assert_instance_of(String, d2.to_s)
d = Date.today
a = d.marshal_dump
d.freeze
assert(d.frozen?)
assert_raise(FrozenError){d.marshal_load(a)}
d = DateTime.now
a = d.marshal_dump
d.freeze
assert(d.frozen?)
assert_raise(FrozenError){d.marshal_load(a)}
end
end