Created
December 8, 2008 16:56
-
-
Save tpope/33514 to your computer and use it in GitHub Desktop.
This file contains 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
Feature: test | |
Scenario: test | |
When I run the suite | |
Then the method should be callable |
This file contains 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 Methods | |
def test_method | |
true | |
end | |
end | |
Before do | |
extend Methods | |
end | |
When 'I run the suite' do | |
end | |
Then 'the method should be callable' do | |
test_method | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment