Sha256: aebbb0153a466808c67cccdc6ef2e301f9032c459cfb228ee61ba490403880ad

Contents?: true

Size: 701 Bytes

Versions: 62

Compression:

Stored size: 701 Bytes

Contents

require 'test_helper'

module Workarea
  module Storefront
    class CreditCardsHelperTest < ViewTest
      include InlineSvg::ActionView::Helpers

      def test_credit_card_issuer_icon
        assert_equal(
          inline_svg(
            'workarea/storefront/default_card.svg',
            class: 'payment-icon payment-icon--foo',
            title: 'Foo'
          ),
          credit_card_issuer_icon('Foo')
        )

        assert_equal(
          inline_svg(
            'workarea/storefront/payment_icons/visa.svg',
            class: 'payment-icon payment-icon--visa',
            title: 'Visa'
          ),
          credit_card_issuer_icon('Visa')
        )
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-storefront-3.5.27 test/helpers/workarea/storefront/credit_cards_helper_test.rb
workarea-storefront-3.5.26 test/helpers/workarea/storefront/credit_cards_helper_test.rb
workarea-storefront-3.4.45 test/helpers/workarea/storefront/credit_cards_helper_test.rb
workarea-storefront-3.5.25 test/helpers/workarea/storefront/credit_cards_helper_test.rb
workarea-storefront-3.5.23 test/helpers/workarea/storefront/credit_cards_helper_test.rb
workarea-storefront-3.4.44 test/helpers/workarea/storefront/credit_cards_helper_test.rb
workarea-storefront-3.5.22 test/helpers/workarea/storefront/credit_cards_helper_test.rb
workarea-storefront-3.4.43 test/helpers/workarea/storefront/credit_cards_helper_test.rb
workarea-storefront-3.5.21 test/helpers/workarea/storefront/credit_cards_helper_test.rb
workarea-storefront-3.4.42 test/helpers/workarea/storefront/credit_cards_helper_test.rb
workarea-storefront-3.5.20 test/helpers/workarea/storefront/credit_cards_helper_test.rb
workarea-storefront-3.4.41 test/helpers/workarea/storefront/credit_cards_helper_test.rb
workarea-storefront-3.5.19 test/helpers/workarea/storefront/credit_cards_helper_test.rb
workarea-storefront-3.4.40 test/helpers/workarea/storefront/credit_cards_helper_test.rb
workarea-storefront-3.5.18 test/helpers/workarea/storefront/credit_cards_helper_test.rb
workarea-storefront-3.4.39 test/helpers/workarea/storefront/credit_cards_helper_test.rb
workarea-storefront-3.5.17 test/helpers/workarea/storefront/credit_cards_helper_test.rb
workarea-storefront-3.4.38 test/helpers/workarea/storefront/credit_cards_helper_test.rb
workarea-storefront-3.5.16 test/helpers/workarea/storefront/credit_cards_helper_test.rb
workarea-storefront-3.4.37 test/helpers/workarea/storefront/credit_cards_helper_test.rb