Sylius/features/currency/switching_current_currency.feature
Mateusz Zalewski 7c20c561d0
PR review fixes
2016-11-22 10:31:21 +01:00

26 lines
866 B
Gherkin

@currencies
Feature: Switching the current currency
In order to see prices in my preferred currency
As a Customer
I want to be able to switch currencies
Background:
Given the store operates on a channel named "Web" in "EUR" currency
And that channel allows to shop using "EUR" and "USD" currencies
@ui
Scenario: Showing the current currency
When I browse that channel
Then I should shop using the "EUR" currency
@ui
Scenario: Showing available currencies
When I browse that channel
Then I should be able to shop using the "USD" currency
@ui
Scenario: Switching the current currency
When I browse that channel
And I switch to the "USD" currency
Then I should shop using the "USD" currency
And I should be able to shop using the "EUR" currency