mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-05 17:40:51 +08:00
15 lines
376 B
Ruby
15 lines
376 B
Ruby
# 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 != t2.object_id
|
|
end
|
|
end
|