-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: add some notes for myself for the future
- Loading branch information
Showing
4 changed files
with
57 additions
and
1 deletion.
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,21 @@ | ||
|
||
We are using Cucumber for automated testing. Read more at the | ||
following two links: | ||
|
||
- [link1](https://en.wikipedia.org/wiki/Cucumber_(software)) | ||
- [link2](http://www.methodsandtools.com/tools/cucumber.php) | ||
|
||
features/ | ||
This is the features directory. The features directory Contains | ||
feature files, which all have a .feature extension. May contain | ||
subdirectories to organize feature files. | ||
|
||
features/step_definitions | ||
This directory contains step definition files, which are Ruby code | ||
and have a .rb extension. | ||
|
||
features/support | ||
This directory contains supporting Ruby code. Files in support | ||
load before those in step_definitions, which makes it useful for | ||
such things as environment configuration (commonly done in a file | ||
called env.rb). |
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