Sha256: d40fb489d352c2993fbb3115e083e73b4d15c7d91686c144589e46e193b23bf7
Contents?: true
Size: 1009 Bytes
Versions: 1
Compression:
Stored size: 1009 Bytes
Contents
unless ENV['CI'] require 'simplecov' SimpleCov.start end require 'base64' 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 module MtGox module Request private def add_nonce(options) options.merge!({:nonce => 1321745961249676}) end end end def test_headers(body=test_body) signature = Base64.strict_encode64( OpenSSL::HMAC.digest 'sha512', Base64.decode64(MtGox.secret), body ) {'Rest-Key' => MtGox.key, 'Rest-Sign' => signature} end def test_body(options={}) options.merge!({:nonce => 1321745961249676}).collect{|k, v| "#{k}=#{v}"} * '&' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mtgox-0.8.0 | spec/helper.rb |