Created
October 29, 2012 19:17
-
-
Save Ikke/3975851 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: Log time | |
In order to keep my time | |
As a developer | |
I need to be able to add log entries | |
Scenario: Add a single time entry | |
Given I am a developer | |
When I enter the following into my time log: | |
""" | |
08:00 - 09:00 - Doing something | |
""" | |
Then A log entry should be created with: | |
""" | |
start: 08:00 | |
end: 09:00 | |
description: Doing something | |
""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment