Rename checkout_workflow to checkout_helper

This commit is contained in:
Luis Ramos
2020-08-18 14:11:25 +01:00
parent 785f8ada4d
commit d1f5828d13
6 changed files with 6 additions and 6 deletions

View File

@@ -4,7 +4,7 @@ feature "As a consumer I want to check out my cart", js: true do
include AuthenticationHelper
include WebHelper
include ShopWorkflow
include CheckoutWorkflow
include CheckoutHelper
include UIComponentHelper
describe "using the checkout" do

View File

@@ -2,7 +2,7 @@ require "spec_helper"
feature "Checking out with Paypal", js: true do
include ShopWorkflow
include CheckoutWorkflow
include CheckoutHelper
let(:distributor) { create(:distributor_enterprise) }
let(:supplier) { create(:supplier_enterprise) }

View File

@@ -3,7 +3,7 @@ require 'spec_helper'
feature "As a consumer I want to check out my cart", js: true do
include AuthenticationHelper
include ShopWorkflow
include CheckoutWorkflow
include CheckoutHelper
include WebHelper
include UIComponentHelper

View File

@@ -5,7 +5,7 @@ feature "Using embedded shopfront functionality", js: true do
include AuthenticationHelper
include WebHelper
include ShopWorkflow
include CheckoutWorkflow
include CheckoutHelper
include UIComponentHelper
describe "using iframes" do

View File

@@ -4,7 +4,7 @@ feature "shopping with variant overrides defined", js: true do
include AuthenticationHelper
include WebHelper
include ShopWorkflow
include CheckoutWorkflow
include CheckoutHelper
include UIComponentHelper
let(:hub) { create(:distributor_enterprise, with_payment_and_shipping: true) }

View File

@@ -1,4 +1,4 @@
module CheckoutWorkflow
module CheckoutHelper
def have_checkout_details
have_content "Your details"
end