mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 17:10:53 +00:00
16 lines
519 B
Gherkin
16 lines
519 B
Gherkin
@managing_countries
|
|
Feature: Adding a new country
|
|
In order to sell my goods to different countries
|
|
As an Administrator
|
|
I want to add a new country to the store
|
|
|
|
Background:
|
|
Given I am logged in as an administrator
|
|
|
|
@api @ui
|
|
Scenario: Adding country
|
|
When I want to add a new country
|
|
And I choose "United States"
|
|
And I add it
|
|
Then I should be notified that it has been successfully created
|
|
And the country "United States" should appear in the store
|