Sha256: 2a58e797fdbba7c55e6daf682e9a8f9b15468d008d1d79ce8aea76300389578a

Contents?: true

Size: 1.3 KB

Versions: 3

Compression:

Stored size: 1.3 KB

Contents

# This file was generated by the `rspec --init` command. Conventionally, all
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
# Require this file using `require "spec_helper"` to ensure that it is only
# loaded once.
#
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
require 'simplecov'
SimpleCov.start

require 'webmock/rspec'
require 'rspec/its'
require 'vcr'
require './lib/espago'
require 'byebug'

VCR.configure do |c|
  c.default_cassette_options = {:record => :once, :serialize_with => :yaml}
  c.cassette_library_dir = 'spec/fixtures/cassettes'
  c.hook_into :webmock
end
#WebMock.allow_net_connect!
#VCR.turn_off!(:ignore_cassettes => false)
#VCR.turn_on!

RSpec.configure do |config|
  config.run_all_when_everything_filtered = true
  config.filter_run :focus

  # config.raise_errors_for_deprecations!

  config.before(:each) do
    Espago.app_id = 'app_id_test'
    Espago.app_password = 'app_password_test'
    Espago.public_key = 'app_public_key_test'
    Espago.production = false
    Espago.api_version = '3'
  end


  # Run specs in random order to surface order dependencies. If you find an
  # order dependency and want to debug it, you can fix the order by providing
  # the seed, which is printed after each run.
  #     --seed 1234
  config.order = 'random'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
espago-0.1.11 spec/spec_helper.rb
espago-0.1.10 spec/spec_helper.rb
espago-0.1.9 spec/spec_helper.rb