2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../spec_helper'
|
2017-05-07 12:04:49 +00: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 12:40:09 +02:00
|
|
|
-> { Prime.instance }.should_not complain
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "raises a ArgumentError when is called with some arguments" do
|
2019-07-27 12:40:09 +02:00
|
|
|
-> { Prime.instance(1) }.should raise_error(ArgumentError)
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|
|
|
|
end
|