mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-05 20:57:12 +00:00
16 lines
690 B
Gherkin
16 lines
690 B
Gherkin
@managing_payment_methods
|
|
Feature: Browsing payment methods
|
|
In order to see all payment methods in the store
|
|
As an Administrator
|
|
I want to be able to browse payment methods
|
|
|
|
Background:
|
|
Given I am logged in as an administrator
|
|
|
|
@api @ui
|
|
Scenario: Browsing defined payment methods
|
|
Given the store has a payment method "Offline" with a code "OFF"
|
|
And the store has a payment method "PayPal Express Checkout" with a code "PAYPAL" and "Paypal Express Checkout" gateway
|
|
When I browse payment methods
|
|
Then I should see 2 payment methods in the list
|
|
And the payment method "PayPal Express Checkout" should be in the registry
|