-
-
Save everzet/833984 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: New Study | |
In order to create a new Study | |
As a Researcher | |
I must be able to enter information about the study and save it | |
Scenario Outline: Researcher adds new study | |
When I enter <study name> | |
And I enter <short url> | |
And I enter <welcome text> | |
And I set self registration to <self registration> | |
Then I should be redirected to /study/list | |
And I should see "<study name> created" | |
Examples: | |
| study name | short url | welcome text | self registration | | |
| Study 1 | study-1 | test text 1 | false | | |
| Study 1 | study-1 | test text 2 | true | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment