Update known issues to use new mock system

This commit is contained in:
Michael Miller 2022-07-12 21:50:45 -06:00
parent 99fb47c6e9
commit 193a476679
No known key found for this signature in database
GPG key ID: 32B47AE8F388A1FF
3 changed files with 10 additions and 12 deletions

View file

@ -7,10 +7,10 @@ Spectator.describe "GitHub Issue #28" do
end
end
# mock Test
mock Test
xit "matches method stubs with no_args", pending: "Mock redesign" do
test = Test.new
it "matches method stubs with no_args" do
test = mock(Test)
expect(test).to receive(:foo).with(no_args).and_return(42)
test.foo
end