File: Rational_spec.rb

package info (click to toggle)
dlr-languages 20090805%2Bgit.e6b28d27%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 51,484 kB
  • ctags: 59,257
  • sloc: cs: 298,829; ruby: 159,643; xml: 19,872; python: 2,820; yacc: 1,960; makefile: 96; sh: 65
file content (41 lines) | stat: -rw-r--r-- 1,247 bytes parent folder | download
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
require File.dirname(__FILE__) + '/../../spec_helper'
require 'rational'

describe "Rational when passed Integer, Integer" do
  it "returns a new Rational number" do
    Rational(1, 2).should == Rational.new!(1, 2)
    Rational(-3, -5).should == Rational.new!(-3, -5)
    Rational(bignum_value, 3).should == Rational.new!(bignum_value, 3)
  end

  it "automatically reduces the Rational" do
    Rational(2, 4).should == Rational.new!(1, 2)
    Rational(3, 9).should == Rational.new!(1, 3)
  end
end


# Guard against the Mathn library
conflicts_with :Prime do
  describe "Rational when passed Integer" do
    it "returns a new Rational number with 1 as the denominator" do
      Rational(1).should eql(Rational.new!(1, 1))
      Rational(-3).should eql(Rational.new!(-3, 1))
      Rational(bignum_value).should eql(Rational.new!(bignum_value, 1))
    end
  end

  describe "Rational when passed Integer and Rational::Unify is defined" do
    after :each do
      Rational.send :remove_const, :Unify
    end

    it "returns the passed Integer when Rational::Unify is defined" do
      Rational::Unify = true

      Rational(1).should eql(1)
      Rational(-3).should eql(-3)
      Rational(bignum_value).should eql(bignum_value)
    end
  end
end