docs.daveops.net

Snippets for yer computer needs

Minitest

Mocking methods

# method mocking is done with a block
ClassName.stub :method_name, method_value do
  ClassName.method_to_run_against
end