-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9ed2a8d
commit 13da769
Showing
6 changed files
with
38 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.vscode/ | ||
docs/ | ||
public/ |
File renamed without changes.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# language: en | ||
@todo-managing @functional @gui @uat @wip | ||
Feature: Ticking off todos when they are Done | ||
In order to avoid having to remember things that needs to do | ||
KP wants to records all the things needs to get done. | ||
|
||
@regression @integration @ci | ||
Scenario Outline: Mark items in the todo list as done | ||
|
||
Given that KP has a list of things to do such as "<todo-list>" | ||
When he marks "<done-todos>" in the list as done | ||
And he looks at all things to do | ||
Then he shall see the number of todos should at least be <nr-of-todos> | ||
|
||
@smoke | ||
Examples: | ||
| todo-list | done-todos | nr-of-todos | | ||
| Buy some cookies, Walk the dog, Buy some cereal | Walk the dog, Buy some cereal | 1 | | ||
| Smile more often, Drink more water, Eat a banana | Drink more water | 2 | | ||
| Write some code, Do some demos, Smile more often, Drink more water | Write some code, Do some demos | 2 | | ||
|
||
@sanity @security | ||
Examples: | ||
| todo-list | done-todos | nr-of-todos | | ||
| Join the 5AM Club, Join the Audible Inner-circle | Join the Audible Inner-circle | 2 | |
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