Skip to content

Instantly share code, notes, and snippets.

@msassak
Created November 22, 2010 23:18
Show Gist options
  • Select an option

  • Save msassak/710914 to your computer and use it in GitHub Desktop.

Select an option

Save msassak/710914 to your computer and use it in GitHub Desktop.
# in feature/step_definitions/steps.rb
Given "blah" do
do_it
end
module MoreWorld
extend self
def do_it
p "Do it"
end
end
World(MoreWorld)
# in features/support/common_env.rb
require File.expand_path(File.dirname(__FILE__) + '/../step_definitions/s_steps.rb')
MoreWorld.do_it
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment