Sha256: 0fe7f42af73f5039dabd9b925ae2aa15f1be67db710153a6aabd8113e6cfe4ac

Contents?: true

Size: 1.04 KB

Versions: 5

Compression:

Stored size: 1.04 KB

Contents

require File.expand_path( File.dirname(__FILE__) + '/../examples/shelby_arena_keys.rb')
require File.expand_path( File.dirname(__FILE__) + '/../lib/shelby_arena.rb')

require 'debugger'

require 'vcr'
require 'vcr_helper'
require 'webmock/rspec'

Dir.glob(File.dirname(__FILE__) + "/factories/*").each { |f| require f }

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

  # 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


def simulate_connection_to_server
  ShelbyArena::Api.connect(ShelbyArenaKeys::USERNAME, 
                           ShelbyArenaKeys::PASSWORD,
                           ShelbyArenaKeys::API_KEY, 
                           ShelbyArenaKeys::API_SECRET, 
                           ShelbyArenaKeys::SHELBY_ARENA_SERVICE_URL)
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
shelby-arena-api-0.3.2 spec/spec_helper.rb
shelby-arena-api-0.3.1 spec/spec_helper.rb
shelby-arena-api-0.3.0 spec/spec_helper.rb
shelby-arena-api-0.2.2 spec/spec_helper.rb
shelby-arena-api-0.2.1 spec/spec_helper.rb