mirror of
https://github.com/github/rails.git
synced 2026-01-28 07:48:00 -05:00
Include time zone offset in TimeWithZone#to_json
This commit is contained in:
@@ -78,7 +78,7 @@ module ActiveSupport
|
||||
|
||||
def to_json(options = nil)
|
||||
if ActiveSupport.use_standard_json_time_format
|
||||
utc.xmlschema.inspect
|
||||
xmlschema.inspect
|
||||
else
|
||||
%("#{time.strftime("%Y/%m/%d %H:%M:%S")} #{formatted_offset(false)}")
|
||||
end
|
||||
|
||||
@@ -70,7 +70,7 @@ class TimeWithZoneTest < Test::Unit::TestCase
|
||||
|
||||
def test_to_json_with_use_standard_json_time_format_config_set_to_true
|
||||
old, ActiveSupport.use_standard_json_time_format = ActiveSupport.use_standard_json_time_format, true
|
||||
assert_equal "\"2000-01-01T00:00:00Z\"", @twz.to_json
|
||||
assert_equal "\"1999-12-31T19:00:00-05:00\"", @twz.to_json
|
||||
ensure
|
||||
ActiveSupport.use_standard_json_time_format = old
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user