mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 17:10:53 +00:00
20 lines
842 B
Gherkin
20 lines
842 B
Gherkin
@installer @cli
|
|
Feature: Sylius Install Feature
|
|
In order to install Sylius via CLI
|
|
As a Developer
|
|
I want to run an installation command
|
|
|
|
Scenario: Registering administrator account
|
|
Given I provide full administrator data
|
|
When I run Sylius CLI installer
|
|
Then I should see output "Administrator account successfully registered."
|
|
|
|
Scenario: Trying to register administrator account without email
|
|
Given I do not provide an email
|
|
When I run Sylius CLI installer
|
|
Then I should see output "E-Mail: This value should not be blank"
|
|
|
|
Scenario: Trying to register administrator account with an incorrect email
|
|
Given I do not provide a correct email
|
|
When I run Sylius CLI installer
|
|
Then I should see output "E-Mail: This value is not a valid email address."
|