13 lines
411 B
Gherkin
13 lines
411 B
Gherkin
|
Feature: Blog is available
|
||
|
To provide useful information
|
||
|
For technical enthusiasts
|
||
|
I want my Blog to be available
|
||
|
|
||
|
Scenario: Website is delivered
|
||
|
Given I am on "http://daniel-siepmann.de"
|
||
|
Then the response status code should be 200
|
||
|
|
||
|
Scenario: Website delivers Blog posts
|
||
|
Given I am on "http://daniel-siepmann.de"
|
||
|
Then I should see 10 ".post-list h2" elements
|