summaryrefslogtreecommitdiff
path: root/spec/ruby/core/rational/to_r_spec.rb
blob: 34f16d7890d772ceb64039ef2e59346f7a08b846 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require_relative "../../spec_helper"

describe "Rational#to_r" do
  it "returns self" do
    a = Rational(3, 4)
    a.to_r.should equal(a)

    a = Rational(bignum_value, 4)
    a.to_r.should equal(a)
  end

  it "raises TypeError trying to convert BasicObject" do
    obj = BasicObject.new
    -> { Rational(obj) }.should raise_error(TypeError)
  end

  it "works when a BasicObject has to_r" do
    obj = BasicObject.new; def obj.to_r; 1 / 2.to_r end
    Rational(obj).should == Rational('1/2')
  end

  it "fails when a BasicObject's to_r does not return a Rational" do
    obj = BasicObject.new; def obj.to_r; 1 end
    -> { Rational(obj) }.should raise_error(TypeError)
  end
end