summaryrefslogtreecommitdiff
path: root/spec/ruby/core/numeric/finite_spec.rb
blob: 05b5eebbd68916e7a319793745d7c51d10a58efb (plain)
1
2
3
4
5
6
7
8
require_relative '../../spec_helper'

describe "Numeric#finite?" do
  it "returns true by default" do
    o = mock_numeric("finite")
    o.finite?.should be_true
  end
end