HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-2.5.9/spec/ruby/core/time/to_r_spec.rb
require File.expand_path('../../../spec_helper', __FILE__)

describe "Time#to_r" do
  it "returns the a Rational representing seconds and subseconds since the epoch" do
    Time.at(Rational(11, 10)).to_r.should eql(Rational(11, 10))
  end

  it "returns a Rational even for a whole number of seconds" do
    Time.at(2).to_r.should eql(Rational(2))
  end
end