Sha256: a2d91ac65fa0875142f96807da317465d0886f899ac83e8b5d6776ad5b1bc7e4
Contents?: true
Size: 376 Bytes
Versions: 52
Compression:
Stored size: 376 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) require File.expand_path('../fixtures/methods', __FILE__) describe "Time#succ" do it "returns a new time one second later than time" do Time.at(100).succ.should == Time.at(101) end it "returns a new instance" do t1 = Time.at(100) t2 = t1.succ t1.object_id.should_not == t2.object_id end end
Version data entries
52 entries across 52 versions & 2 rubygems