Sha256: a074fe2e43ead687c96ec907f3f8746c2225629f2ca9ac0e14486a22b437d49b

Contents?: true

Size: 614 Bytes

Versions: 11

Compression:

Stored size: 614 Bytes

Contents

$:.unshift File.expand_path("../../lib", __FILE__)
require "webmaster_tools"

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

11 entries across 11 versions & 1 rubygems

Version Path
webmaster_tools-0.1.9 spec/spec_helper.rb
webmaster_tools-0.1.8 spec/spec_helper.rb
webmaster_tools-0.1.7 spec/spec_helper.rb
webmaster_tools-0.1.6 spec/spec_helper.rb
webmaster_tools-0.1.5 spec/spec_helper.rb
webmaster_tools-0.1.4 spec/spec_helper.rb
webmaster_tools-0.1.3 spec/spec_helper.rb
webmaster_tools-0.1.2 spec/spec_helper.rb
webmaster_tools-0.1.1 spec/spec_helper.rb
webmaster_tools-0.1.0 spec/spec_helper.rb
webmaster_tools-0.1.0.rc2 spec/spec_helper.rb