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

describe "Time#to_f" do
  it "returns the float number of seconds + usecs since the epoch" do
    Time.at(100, 100).to_f.should == 100.0001
  end
end