Skip to content

Instantly share code, notes, and snippets.

@kaspernj
Created April 18, 2020 17:43
Show Gist options
  • Save kaspernj/341b9feebfe0f7dec0eeccc344dd0da8 to your computer and use it in GitHub Desktop.
Save kaspernj/341b9feebfe0f7dec0eeccc344dd0da8 to your computer and use it in GitHub Desktop.
Stubbing original method with sleep
expect(object).to receive(:method_name).and_wrap_original do |original, *args, &blk|
sleep 1
original.call(*args, &blk)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment