shard-spectator/spec/issues/github_issue_28_spec.cr
2024-05-16 21:02:14 -06:00

17 lines
294 B
Crystal

require "../spec_helper"
Spectator.describe "GitHub Issue #28" do
class Test
def foo
42
end
end
mock MockTest < Test
it "matches method stubs with no_args" do
test = MockTest.new
expect(test).to receive(:foo).with(no_args).and_return(42)
test.foo
end
end