mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 17:10:53 +00:00
21 lines
842 B
Gherkin
21 lines
842 B
Gherkin
@static_content
|
|
Feature: Showing static content
|
|
In order to access information about the shop
|
|
As a Customer
|
|
I want to be able to browse through its pages
|
|
|
|
Background:
|
|
Given the store operates on a single channel in "United States"
|
|
|
|
@ui
|
|
Scenario: Showing static content
|
|
Given the store has static content "Krzysztof Krawczyk" with name "krzysztof-krawczyk"
|
|
When I access static content with name "krzysztof-krawczyk"
|
|
Then I should see that static content
|
|
|
|
@ui
|
|
Scenario: Preventing from showing unpublished static content
|
|
Given the store has static content "Krzysztof Krawczyk" with name "krzysztof-krawczyk"
|
|
And it is not published yet
|
|
When I access static content with name "krzysztof-krawczyk"
|
|
Then that static content should not be found there
|