summaryrefslogtreecommitdiff
path: root/spec/ruby/library/date/rfc3339_spec.rb
blob: a8711d47b281e4f969b6146572abca5bc7f5cb27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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