2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../spec_helper'
|
2017-05-07 08:04:49 -04:00
|
|
|
require 'prime'
|
|
|
|
|
|
|
|
describe "Prime.instance" do
|
|
|
|
it "returns a object representing the set of prime numbers" do
|
|
|
|
Prime.instance.should be_kind_of(Prime)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns a object with no obsolete features" do
|
|
|
|
Prime.instance.should_not respond_to(:succ)
|
|
|
|
Prime.instance.should_not respond_to(:next)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "does not complain anything" do
|
2019-07-27 06:40:09 -04:00
|
|
|
-> { Prime.instance }.should_not complain
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "raises a ArgumentError when is called with some arguments" do
|
2019-07-27 06:40:09 -04:00
|
|
|
-> { Prime.instance(1) }.should raise_error(ArgumentError)
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
end
|