Sha256: 0ea2e92eab48957c90b0777c7cd0bd6b9211e0d593a165ac5b1264e08d392894

Contents?: true

Size: 675 Bytes

Versions: 8

Compression:

Stored size: 675 Bytes

Contents

require 'coveralls'
Coveralls.wear!

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))
require 'rspec'

begin
  require 'byebug'
rescue Exception
end

require 'market_bot'

# 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|
end

Typhoeus.configure do |config|
  config.block_connection = true
end

def read_play_data(name)
  path = File.join(File.expand_path(File.dirname(__FILE__)),
                   'market_bot', 'play', 'data', name)
  File.read(path)
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
market_bot-1.0.7 spec/spec_helper.rb
market_bot-1.0.6 spec/spec_helper.rb
market_bot-1.0.5 spec/spec_helper.rb
market_bot-1.0.4 spec/spec_helper.rb
market_bot-1.0.3 spec/spec_helper.rb
market_bot-1.0.2 spec/spec_helper.rb
market_bot-1.0.1 spec/spec_helper.rb
market_bot-1.0.0 spec/spec_helper.rb