Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save mattwynne/182467 to your computer and use it in GitHub Desktop.

Select an option

Save mattwynne/182467 to your computer and use it in GitHub Desktop.
module DoesStuffAroundFeatures
def visit_feature(feature)
puts "About to run feature #{feature.name}"
super
puts "I just finished that feature"
end
end
Cucumber.configure do |config|
config.extend_primary_visitor DoesStuffAroundFeatures
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment