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

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