mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 09:02:12 +00:00
16 lines
514 B
Gherkin
16 lines
514 B
Gherkin
@managing_currencies
|
|
Feature: Adding a new currency
|
|
In order to sell products in different currencies
|
|
As an Administrator
|
|
I want to add a new currency to the store
|
|
|
|
Background:
|
|
Given I am logged in as an administrator
|
|
|
|
@ui @api
|
|
Scenario: Adding a new currency
|
|
When I want to add a new currency
|
|
And I choose "Euro"
|
|
And I add it
|
|
Then I should be notified that it has been successfully created
|
|
And the currency "Euro" should appear in the store
|