Sha256: a9da746b63e391aea596664af799c17077e940d56ad1d769515e902a144fad08

Contents?: true

Size: 1.86 KB

Versions: 1

Compression:

Stored size: 1.86 KB

Contents

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))
require 'rspec'
require 'webmock/rspec'
require 'genability'
require 'vcr'

CONFIGURATION_DEFAULTS = begin
  YAML::load_file("#{File.dirname(__FILE__)}/configuration.yml").inject({}) do |options, (key, value)|
    options[(key.to_sym rescue key) || key] = value
    options
  end
rescue
  {:application_id => 'ValidAppID', :application_key => 'ValidAppKey'}
end

# Requires supporting files with custom matchers and macros, etc,
# in ./support/ and its subdirectories.
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}

RSpec.configure do |config|
  config.include WebMock::API
  config.extend VCR::RSpec::Macros
end

VCR.config do |c|
  c.ignore_localhost = true
  c.cassette_library_dir = 'spec/cassettes'
  c.stub_with :webmock #:typhoeus, :faraday, :fakeweb, or :webmock
  c.default_cassette_options = { :record => :new_episodes }
  c.filter_sensitive_data('ValidAppID') { CONFIGURATION_DEFAULTS[:application_id] }
  c.filter_sensitive_data('ValidAppKey') { CONFIGURATION_DEFAULTS[:application_key] }
end

def configuration_defaults
  CONFIGURATION_DEFAULTS
end

def a_delete(path)
  a_request(:delete, Genability.endpoint + path)
end

def a_get(path)
  a_request(:get, Genability.endpoint + path)
end

def a_post(path)
  a_request(:post, Genability.endpoint + path)
end

def a_put(path)
  a_request(:put, Genability.endpoint + path)
end

def stub_delete(path)
  stub_request(:delete, Genability.endpoint + path)
end

def stub_get(path)
  stub_request(:get, Genability.endpoint + path)
end

def stub_post(path)
  stub_request(:post, Genability.endpoint + path)
end

def stub_put(path)
  stub_request(:put, Genability.endpoint + path)
end

def fixture_path
  File.expand_path("../fixtures", __FILE__)
end

def fixture(file)
  File.new(fixture_path + '/' + file)
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
genability-0.1.0 spec/spec_helper.rb