summaryrefslogtreecommitdiff
path: root/spec/ruby/core/time/sec_spec.rb
blob: 73fc5ce1fcb3269bf1503542ac66017bfb9e0324 (plain)
1
2
3
4
5
6
7
require_relative '../../spec_helper'

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