Sha256: 71844c9fc99030c8adba5064c9955cb0163ccc4cd258b01f9298b3f40d8d371d

Contents?: true

Size: 599 Bytes

Versions: 1

Compression:

Stored size: 599 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 a_post(path)
  a_request(:post, 'https://mtgox.com' + path)
end

def stub_post(path)
  stub_request(:post, '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.1.0 spec/helper.rb