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

@ -25,13 +25,11 @@ class Sdk < SdkInterface
end
Spectator.describe Example do
# mock Sdk do
# stub register_hook(name, &block)
# end
mock Sdk
describe "#configure" do
xit "registers a block on configure", pending: "Mock redesign" do
sdk = Sdk.new
it "registers a block on configure" do
sdk = mock(Sdk)
example_class = Example.new(sdk)
allow(sdk).to receive(register_hook())