aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/time/sec_spec.rb
blob: e753235b536efd47d7c6fccef8abde4bf0a5dfcb (plain)
1
2
3
4
5
6
7
require File.expand_path('../../../spec_helper', __FILE__)

describe "Time#sec" do
  it "returns the second of the minute(0..60) for time" do
    Time.at(0).sec.should == 0
  end
end