summaryrefslogtreecommitdiff
path: root/spec/ruby/core/numeric/finite_spec.rb
blob: 9fb2252845eb9bb49b5c8bb2bc1936d35de11d4e (plain)
1
2
3
4
5
6
7
8
9
10
require File.expand_path('../../../spec_helper', __FILE__)

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