Sha256: d1624e5f5ad8b12702cdb013c4f2ad70f27395d363aa476abf546e88f1b75e53

Contents?: true

Size: 454 Bytes

Versions: 1

Compression:

Stored size: 454 Bytes

Contents

$:.unshift File.expand_path('..', __FILE__)
$:.unshift File.expand_path('../../lib', __FILE__)
require 'simplecov'
SimpleCov.start
require 'mtgox'
require 'rspec'
require 'webmock/rspec'

def a_get(path)
  a_request(:get, 'https://mtgox.com' + path)
end

def stub_get(path)
  stub_request(:get, 'https://mtgox.com' + 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
mtgox-0.0.1 spec/helper.rb