summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/integer/denominator_spec.rb
blob: 6d080ac81ffc4279846042be34ce708ae3d6c3ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require File.expand_path('../../../spec_helper', __FILE__)

describe "Integer#denominator" do
  # The Numeric child classes override this method, so their behaviour is
  # specified in the appropriate place
  before :each do
    @numbers = [
      20,             # Integer
      -2709,          # Negative Integer
      99999999**99,   # Bignum
      -99999**621,    # Negative BigNum
      0,
      1
    ]
  end

  it "returns 1" do
    @numbers.each {|number| number.denominator.should == 1}
  end
end