diff options
author | zverok <[email protected]> | 2019-08-11 13:50:20 +0300 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2019-10-24 18:39:04 +0900 |
commit | 913807bd6ce98d3d362d27caef4f5e2aef0e5d79 (patch) | |
tree | a120385f2f05fa45f7b83934a006b55ec515c085 | |
parent | 2e37c1960a0b84a9018dc0202a36daf4e692ed46 (diff) |
[ruby/date] Simplify #inspect
https://github.com/ruby/date/commit/af01edd7d8
-rw-r--r-- | ext/date/date_core.c | 7 | ||||
-rw-r--r-- | test/date/test_switch_hitter.rb | 2 |
2 files changed, 4 insertions, 5 deletions
diff --git a/ext/date/date_core.c b/ext/date/date_core.c index 9e4a4f22cc..e00748f9c2 100644 --- a/ext/date/date_core.c +++ b/ext/date/date_core.c @@ -6573,11 +6573,8 @@ static VALUE mk_inspect(union DateData *x, VALUE klass, VALUE to_s) { return rb_enc_sprintf(rb_usascii_encoding(), - "#<%"PRIsVALUE": %"PRIsVALUE" " - "((%+"PRIsVALUE"j,%ds,%+"PRIsVALUE"n),%+ds,%.0fj)>", - klass, to_s, - m_real_jd(x), m_df(x), m_sf(x), - m_of(x), m_sg(x)); + "#<%"PRIsVALUE": %"PRIsVALUE">", + klass, to_s); } /* diff --git a/test/date/test_switch_hitter.rb b/test/date/test_switch_hitter.rb index bdf299e030..5c5a1bb0e6 100644 --- a/test/date/test_switch_hitter.rb +++ b/test/date/test_switch_hitter.rb @@ -282,8 +282,10 @@ class TestSH < Test::Unit::TestCase def test_inspect d = Date.new(2001, 2, 3) assert_equal(Encoding::US_ASCII, d.inspect.encoding) + assert_equal('#<Date: 2001-02-03>', d.inspect) d = DateTime.new(2001, 2, 3) assert_equal(Encoding::US_ASCII, d.inspect.encoding) + assert_equal('#<DateTime: 2001-02-03T00:00:00+00:00>', d.inspect) end def test_strftime |