Skip to content

Instantly share code, notes, and snippets.

@nkryptic
Forked from drnic/mocha.rb
Created March 20, 2009 04:13
Show Gist options
  • Save nkryptic/82197 to your computer and use it in GitHub Desktop.
Save nkryptic/82197 to your computer and use it in GitHub Desktop.
# For mocha integration, add this file into features/support folder
require "mocha"
World { |world| world.extend Mocha::Standalone }
Before do
mocha_setup
end
After do
begin
mocha_verify
ensure
mocha_teardown
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment