Sha256: da78a421bbe8e9e3e67e61331584f5bbc7bf238af9b63699a69dbecf15b917ec

Contents?: true

Size: 174 Bytes

Versions: 9

Compression:

Stored size: 174 Bytes

Contents

describe "Date.new" do
  it "creates a date with arguments" do
    d = Date.new(2000, 3, 5)
    d.year.should == 2000
    d.month.should == 3
    d.day.should == 5
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
opal-0.3.38 spec/core/date/new_spec.rb
opal-0.3.37 spec/core/date/new_spec.rb
opal-0.3.36 spec/core/date/new_spec.rb
opal-0.3.35 spec/core/date/new_spec.rb
opal-0.3.34 spec/core/date/new_spec.rb
opal-0.3.33 spec/core/date/new_spec.rb
opal-0.3.32 spec/core/date/new_spec.rb
opal-0.3.31 spec/core/date/new_spec.rb
opal-0.3.30 spec/core/date/new_spec.rb