Created
November 1, 2012 21:48
-
-
Save Ikke/3996846 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
Feature List entries | |
In order to see what time I have logged | |
I want to get a list of entries for a particular day | |
Scenario: List all entries for a single day | |
Given The date is 2012-11-01 | |
And The log contains the following entries: | |
| start_time | stop_time | description | date | | |
| 08:00 | 09:00 | A | 2012-10-31 | | |
| 08:00 | 09:00 | B | 2012-11-01 | | |
| 09:00 | 10:00 | C | 2012-11-01 | | |
| 08:00 | 09:00 | D | 2012-11-02 | | |
Then The following list should be returned: | |
| start_time | stop_time | description | date | | |
| 08:00 | 09:00 | B | 2012-11-01 | | |
| 09:00 | 10:00 | C | 2012-11-01 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment