Sha256: 9be7f0699a39ca433db725b573529300bcc4bc9bf673537a27ec3587fe2d08f0

Contents?: true

Size: 1 KB

Versions: 5

Compression:

Stored size: 1 KB

Contents

# encoding: UTF-8
require 'minitest/autorun'
require 'minitest/pride'
require 'mocha/setup'

require 'adyen/base'
require 'adyen/matchers'

require 'helpers/configure_adyen'
require 'helpers/test_cards'

require 'pp'
require 'time'

module Adyen::Test
  module Flaky
    def flaky_test(name, &block)
      define_method("test_#{name}") do
        attempt = 0
        test_instance = self
        begin
          attempt += 1
          test_instance.instance_eval(&block)
        rescue Minitest::Assertion
          attempt < 3 ? retry : raise
        end
      end
    end
  end

  module EachXMLBackend
    XML_BACKENDS = [Adyen::API::XMLQuerier::NokogiriBackend, Adyen::API::XMLQuerier::REXMLBackend]

    def for_each_xml_backend(&block)
      XML_BACKENDS.each do |xml_backend|
        begin
          Adyen::API::XMLQuerier.stubs(:default_backend).returns(xml_backend.new)
          block.call(xml_backend)
        ensure
          Adyen::API::XMLQuerier.unstub(:default_backend)
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
adyen-2.4.0 test/test_helper.rb
adyen_jpiqueras-2.5.0 test/test_helper.rb
adyen-2.3.0 test/test_helper.rb
adyen_jpiqueras-2.4.0 test/test_helper.rb
adyen_jpiqueras-2.3.0 test/test_helper.rb