Ryan Musgrave

Results 2 issues of Ryan Musgrave

In Mockito, when using verify() you get a list of all the interactions with a mock on a failure. So the use cases would be: ``` var func = mockFunction();...

## Background We have an odd scenario where we have a model with a default scope. ```ruby class Model < ApplicationRecord enum create_status: [:in_progress, :success, :failed] default_scope { where(create_status: :success)...