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

Version Path
nimbleshop_simply-0.0.13 test/integration/checkout/payment_confirmation_acceptance_test.rb
nimbleshop_simply-0.0.12 test/integration/checkout/payment_confirmation_acceptance_test.rb
nimbleshop_simply-0.0.11 test/integration/checkout/payment_confirmation_acceptance_test.rb
nimbleshop_simply-0.0.10 test/integration/checkout/payment_confirmation_acceptance_test.rb
nimbleshop_simply-0.0.9 test/integration/checkout/payment_confirmation_acceptance_test.rb
nimbleshop_simply-0.0.8 test/integration/checkout/payment_confirmation_acceptance_test.rb
nimbleshop_simply-0.0.7 test/integration/checkout/payment_confirmation_acceptance_test.rb
nimbleshop_core-0.0.5 test/integration/checkout/payment_confirmation_acceptance_test.rb
nimbleshop_core-0.0.4.beta1 test/integration/checkout/payment_confirmation_acceptance_test.rb
nimbleshop_core-0.0.4 test/integration/checkout/payment_confirmation_acceptance_test.rb
nimbleshop_core-0.0.3 test/integration/checkout/payment_confirmation_acceptance_test.rb
nimbleshop_core-0.0.2 test/integration/checkout/payment_confirmation_acceptance_test.rb
nimbleshop_core-0.0.2.beta1 test/integration/checkout/payment_confirmation_acceptance_test.rb
nimbleshop_core-0.0.1 test/integration/checkout/payment_confirmation_acceptance_test.rb
nimbleshop_core-0.0.1.rc6 test/integration/checkout/payment_confirmation_acceptance_test.rb
nimbleshop_core-0.0.1.rc5 test/integration/checkout/payment_confirmation_acceptance_test.rb
nimbleshop_core-0.0.1.rc4 test/integration/checkout/payment_confirmation_acceptance_test.rb
nimbleshop_core-0.0.1.rc3 test/integration/checkout/payment_confirmation_acceptance_test.rb
nimbleshop_core-0.0.1.rc2 test/integration/checkout/payment_confirmation_acceptance_test.rb
nimbleshop_core-0.0.1.rc1 test/integration/checkout/payment_confirmation_acceptance_test.rb