Created
October 18, 2013 20:08
-
-
Save efleming969/7047483 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.exports = function () { | |
| this.Given(/^(\d+) completed tasks$/, function(arg1, callback) { | |
| // express the regexp above with the code you wish you had | |
| callback.pending(); | |
| }); | |
| this.Given(/^(\d+) incomplete tasks$/, function(arg1, callback) { | |
| // express the regexp above with the code you wish you had | |
| callback.pending(); | |
| }); | |
| this.When(/^I visit the tasks view$/, function(callback) { | |
| // express the regexp above with the code you wish you had | |
| callback.pending(); | |
| }); | |
| this.When(/^filter by completed status$/, function(callback) { | |
| // express the regexp above with the code you wish you had | |
| callback.pending(); | |
| }); | |
| this.Then(/^I should see (\d+) tasks$/, function(arg1, callback) { | |
| // express the regexp above with the code you wish you had | |
| callback.pending(); | |
| }); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment