Sylius/features/installer/install_command.feature
2017-10-10 10:51:43 +02:00

20 lines
826 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 "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 "This value is not a valid email address."