Can I expect a receiver to receive some arguments, which I only care about matching some of the arguments?
expect(Service).to receive(:foo).with(anything, "must-match", anything).and_return(response)
Can I expect a receiver to receive some arguments, which I only care about matching some of the arguments?
expect(Service).to receive(:foo).with(anything, "must-match", anything).and_return(response)