-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #78 from spriteCloud/development
Development version 2.0.0
- Loading branch information
Showing
14 changed files
with
489 additions
and
81 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
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
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 |
---|---|---|
|
@@ -6,5 +6,5 @@ | |
# All rights reserved. | ||
# | ||
module LapisLazuli | ||
VERSION = "1.1.0" | ||
VERSION = "2.0.0" | ||
end |
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
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,52 @@ | ||
@multifind @p | ||
Feature: testing multifind | ||
|
||
@multifind01 | ||
Scenario: multifind01 - multifind with 1 results | ||
Given I navigate to the find test page | ||
Then the user expects a result in a multi_find lookup | ||
|
||
@multifind02 | ||
Scenario: multifind02 - multifind no results | ||
Given I navigate to the find test page | ||
Then the user expects an error in a multi_find lookup | ||
|
||
@multifind03 | ||
Scenario: multifind03 - multifind with no results and no error | ||
Given I navigate to the find test page | ||
Then the user expects no error in a multi_find lookup | ||
|
||
@multifind04 | ||
Scenario: multifind04 - multifind all with 8 results | ||
Given I navigate to the find test page | ||
Then the user expects 8 results in a multi_find_all lookup | ||
|
||
@multifind05 | ||
Scenario: multifind05 - multifind all with 1 results | ||
Given I navigate to the find test page | ||
Then the user expects 1 results in a multi_find_all lookup | ||
|
||
@multifind06 | ||
Scenario: multifind06 - multifind all with 5 results | ||
Given I navigate to the find test page | ||
Then the user expects 5 existing results in a multi_find_all lookup | ||
|
||
@multifind07 | ||
Scenario: multifind07 - multifind all with no results | ||
Given I navigate to the find test page | ||
Then the user expects an error in a multi_find_all lookup | ||
|
||
@multifind08 | ||
Scenario: multifind08 - multifind all with no results and no error | ||
Given I navigate to the find test page | ||
Then the user expects no error in a multi_find_all lookup | ||
|
||
@multifind09 | ||
Scenario: multifind09 - multifind all natching all elements with no results | ||
Given I navigate to the find test page | ||
Then the user expects an error in a multi_find_all lookup matching all elements | ||
|
||
@multifind10 | ||
Scenario: multifind10 - multifind all natching all elements with no error | ||
Given I navigate to the find test page | ||
Then the user expects no error in a multi_find_all lookup matching all elements |
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,35 @@ | ||
@screenshot @p | ||
Feature: Screenshot | ||
When I want to test the Lapis Lazuli library | ||
I want to run a webserver with some test files | ||
And execute the each library function searches for elements. | ||
|
||
@screenshot_01 | ||
Scenario: screenshot_01 - Successfull scenario with screenshots | ||
Given I navigate to the screenshot test page | ||
When I take a screenshot | ||
Then I take a screenshot | ||
|
||
@screenshot_02 | ||
Scenario: screenshot_02 - Taking a screenshot on a failed scenario | ||
Given I navigate to the screenshot test page | ||
Then I fail this step | ||
|
||
@screenshot_03 | ||
Scenario Outline: screenshot_03 - Successfull scenario outlines with screenshots | ||
Given I navigate to the screenshot test page | ||
When I take a screenshot | ||
Then I take a screenshot | ||
Examples: | ||
| fails | | ||
| failing once | | ||
| failing twice | | ||
|
||
@screenshot_04 | ||
Scenario Outline: screenshot_04 - Failing in a scenario outline | ||
Given I navigate to the screenshot test page | ||
Then I fail this step | ||
Examples: | ||
| fails | | ||
| failing once | | ||
| failing twice | |
Oops, something went wrong.