Implement arguments case equality

Implements https://github.com/icy-arctic-fox/spectator/issues/47
Some specs are failing and need to be resolved before the new feature is considered done.
This commit is contained in:
Michael Miller 2022-10-23 20:42:08 -06:00
parent 0177a678f9
commit e2130d12d3
No known key found for this signature in database
GPG key ID: 32B47AE8F388A1FF
3 changed files with 205 additions and 65 deletions

View file

@ -11,7 +11,7 @@ Spectator.describe "GitHub Issue #47" do
let(fake) { mock(Original) }
xspecify do
specify do
expect(fake).to receive(:foo).with("arg1", arg2: "arg2")
fake.foo("arg1", "arg2")
end