Sha256: a084dea651cb97afd0ba84ac14bb0fa4708ec921d5471e60ec8566b1b2c00b62
Contents?: true
Size: 851 Bytes
Versions: 20
Compression:
Stored size: 851 Bytes
Contents
require 'test_helper' class PaymentConfirmationAcceptanceTest < ActionDispatch::IntegrationTest test "show order when it was paid using splitable" do order = create :order_paid_using_splitable visit nimbleshop_simply.order_path(order) assert page.has_content?('Purchase is complete') end test "show order when it was paid using paypalwp" do order = create :order_paid_using_paypalwp visit nimbleshop_simply.order_path(order) assert page.has_content?('Purchase is complete') end test "show order when it was paid using authorizedotnet" do order = create :order_paid_using_authorizedotnet visit nimbleshop_simply.order_path(order) assert page.has_content?('Purchase is complete') assert page.has_content?('In the credit card statement name of the company would appear as Nimbleshop LLC') end end
Version data entries
20 entries across 20 versions & 2 rubygems