mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
9 lines
283 B
Ruby
9 lines
283 B
Ruby
describe :random_number, shared: true do
|
|
it "returns a Float if no max argument is passed" do
|
|
@object.send(@method).should be_kind_of(Float)
|
|
end
|
|
|
|
it "returns an Integer if an Integer argument is passed" do
|
|
@object.send(@method, 20).should be_kind_of(Integer)
|
|
end
|
|
end
|