Sha256: d18af4f2998c5263912d7706ea4a6e61d274770943d6de06c17481886be831af
Contents?: true
Size: 608 Bytes
Versions: 2
Compression:
Stored size: 608 Bytes
Contents
$:.unshift File.expand_path("../../lib", __FILE__) require "adyen-admin" require 'vcr' VCR.configure do |c| c.cassette_library_dir = 'spec/fixtures/cassettes' c.hook_into :webmock c.configure_rspec_metadata! c.preserve_exact_body_bytes do |http_message| http_message.body.encoding.name == 'ASCII-8BIT' || !http_message.body.valid_encoding? end c.allow_http_connections_when_no_cassette = true end RSpec.configure do |c| # so we can use `:vcr` rather than `:vcr => true`; # in RSpec 3 this will no longer be necessary. c.treat_symbols_as_metadata_keys_with_true_values = true end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
adyen-admin-0.0.2 | spec/spec_helper.rb |
adyen-admin-0.0.1 | spec/spec_helper.rb |