Show new mock and double system in README

This commit is contained in:
Michael Miller 2022-07-12 23:22:47 -06:00
parent 754bfd6939
commit e52f187eb7
No known key found for this signature in database
GPG key ID: 32B47AE8F388A1FF
2 changed files with 64 additions and 9 deletions

34
spec/docs/readme_spec.cr Normal file
View file

@ -0,0 +1,34 @@
require "../spec_helper"
private abstract class Interface
abstract def invoke(thing) : String
end
# Type being tested.
private class Driver
def do_something(interface : Interface, thing)
interface.invoke(thing)
end
end
Spectator.describe Driver do
# Define a mock for Interface.
mock Interface
# Define a double that the interface will use.
double(:my_double, foo: 42)
it "does a thing" do
# Create an instance of the mock interface.
interface = mock(Interface)
# Indicate that `#invoke` should return "test" when called.
allow(interface).to receive(:invoke).and_return("test")
# Create an instance of the double.
dbl = double(:my_double)
# Call the mock method.
subject.do_something(interface, dbl)
# Verify everything went okay.
expect(interface).to have_received(:invoke).with(dbl)
end
end