Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spec behavior of mixing default values with blocks #214

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 54 additions & 1 deletion spec/contracts_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -383,9 +383,62 @@ def self.greeting(name)
it "should handle properly lack of block when there are other arguments" do
expect do
@o.double_with_proc(4)
end.to raise_error(ContractError, /Actual: nil/)
end.to raise_error(ContractError, /Expected: Proc/)
end

describe "and nil default values" do
it "should fail for lack of block when default used" do
expect do
@o.default_nil_with_block
end.to raise_error(ContractError, /Expected: Proc/)
end

it "should fail for lack of block when default overidden" do
expect do
@o.default_nil_with_block(:arg)
end.to raise_error(ContractError, /Expected: Proc/)
end

it "should succeed when default used and block given" do
expect do
@o.default_nil_with_block() {}
end.to_not raise_error
end

it "should succeed when default overidden and block given" do
expect do
@o.default_nil_with_block(:arg) {}
end.to_not raise_error
end
end

describe "and non-nil default values" do
it "should fail for lack of block when default used" do
expect do
@o.default_with_block
end.to raise_error(ContractError, /Expected: Proc/)
end

it "should fail for lack of block when default overidden" do
expect do
@o.default_with_block(:arg)
end.to raise_error(ContractError, /Actual: nil/)
end

it "should succeed when default used and block given" do
expect do
@o.default_with_block() {}
end.to_not raise_error
end

it "should succeed when default overidden and block given" do
expect do
@o.default_with_block(:arg) {}
end.to_not raise_error
end
end


it "should succeed for maybe proc with no proc" do
expect do
@o.maybe_call(5)
Expand Down
8 changes: 8 additions & 0 deletions spec/fixtures/fixtures.rb
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,14 @@ def double_with_proc(x, &blk)
nil
end

Contract C::Maybe[Symbol], Proc => nil
def default_nil_with_block(param = nil, &block)
end

Contract Symbol, Proc => nil
def default_with_block(param = :default, &block)
end

Contract C::Pos => nil
def pos_test(x)
end
Expand Down