Skip to content

Instantly share code, notes, and snippets.

@kmayer
Created June 28, 2010 22:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kmayer/456449 to your computer and use it in GitHub Desktop.
Save kmayer/456449 to your computer and use it in GitHub Desktop.
mocha integration with cucumber
# For mocha integration, add this file into features/support folder
require "mocha"
World(Mocha::API)
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