Sha256: e33d182b4a75955b44f1bd5414dd0b2165c735ca6c8bc1ab5187ebf500dedac4

Contents?: true

Size: 1.21 KB

Versions: 9

Compression:

Stored size: 1.21 KB

Contents

require 'bundler/setup'

require 'active_fulfillment'

require 'minitest/autorun'
require 'mocha/setup'
require 'timecop'

require 'logger'
ActiveFulfillment::Service.logger = Logger.new(nil)

# This makes sure that Minitest::Test exists when an older version of Minitest
# (i.e. 4.x) is required by ActiveSupport.
unless defined?(Minitest::Test)
  Minitest::Test = MiniTest::Unit::TestCase
end

module ActiveFulfillment::Test
  module Fixtures
    LOCAL_CREDENTIALS = ENV['HOME'] + '/.active_fulfillment/fixtures.yml' unless defined?(LOCAL_CREDENTIALS)
    DEFAULT_CREDENTIALS = File.dirname(__FILE__) + '/fixtures.yml' unless defined?(DEFAULT_CREDENTIALS)

    def fixtures(key)
      data = all_fixtures[key] || raise(StandardError, "No fixture data was found for '#{key}'")

      data.dup
    end

    def xml_fixture(path) # where path is like 'usps/beverly_hills_to_ottawa_response'
      File.read(File.join(File.dirname(__FILE__),'fixtures','xml',"#{path}.xml"))
    end

    private

    def all_fixtures
      @@fixtures ||= load_fixtures
    end

    def load_fixtures
      file = File.exists?(LOCAL_CREDENTIALS) ? LOCAL_CREDENTIALS : DEFAULT_CREDENTIALS
      YAML.load(File.read(file)).deep_symbolize_keys
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
active_fulfillment-3.0.3 test/test_helper.rb
active_fulfillment-3.0.2 test/test_helper.rb
active_fulfillment-3.0.0.pre8 test/test_helper.rb
active_fulfillment-3.0.0.pre7 test/test_helper.rb
active_fulfillment-3.0.0.pre6 test/test_helper.rb
active_fulfillment-3.0.0.pre5 test/test_helper.rb
active_fulfillment-3.0.0.pre4 test/test_helper.rb
active_fulfillment-3.0.0.pre3 test/test_helper.rb
active_fulfillment-3.0.0.pre2 test/test_helper.rb