mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8 lines
172 B
Ruby
8 lines
172 B
Ruby
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
|