Created
February 28, 2018 14:35
-
-
Save edwardharks/60c59459dead4bedc04d8cc1cc1535ac 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
| @Test | |
| fun logsInWhenUserSelectsLogin() { | |
| given { | |
| user has { loggedOut() } | |
| } whenever { | |
| user launches { | |
| app() | |
| } selects { | |
| login() | |
| } | |
| } then { | |
| user sees { loggedIn() } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment