Created
September 7, 2009 17:26
-
-
Save mattwynne/182467 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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