1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/date/rfc3339_spec.rb
2019-11-30 21:26:52 +01:00

13 lines
291 B
Ruby

require_relative '../../spec_helper'
require 'date'
describe "Date.rfc3339" do
it "needs to be reviewed for spec completeness"
end
describe "Date._rfc3339" do
it "returns an empty hash if the argument is a invalid Date" do
h = Date._rfc3339('invalid')
h.should == {}
end
end