17 lines
596 B
Gherkin
17 lines
596 B
Gherkin
Feature: Blog delivers content
|
|
To provide useful information
|
|
For technical enthusiasts
|
|
I want my Blog to deliver certain information
|
|
|
|
Scenario: My name
|
|
Given I am on "http://daniel-siepmann.de"
|
|
Then I should see "Daniel Siepmann"
|
|
|
|
Scenario: Link to Github profile
|
|
Given I am on "http://daniel-siepmann.de"
|
|
Then I should see "DanielSiepmann" in the ".github a" element
|
|
|
|
Scenario: Certified integrator batch
|
|
Given I am on "http://daniel-siepmann.de"
|
|
Then I should see an "img[alt='TYPO3 Certified Integrator Batch']" element
|
|
|