mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
13 lines
291 B
Ruby
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
|