Skip to content

Instantly share code, notes, and snippets.

@cupakromer
Created October 15, 2013 18:31
Show Gist options
  • Save cupakromer/6996373 to your computer and use it in GitHub Desktop.
Save cupakromer/6996373 to your computer and use it in GitHub Desktop.
expect backtic
class FooBar
def itsends
`ls`
end
end
describe "Stuff" do
it do
fb = FooBar.new
expect(fb).to receive(:`).with('ls')
fb.itsends
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment