Sha256: 0ae4cac2a780ff6c93148db2bb889bc2113bc709c09ea53068392a54ec4c5190

Contents?: true

Size: 991 Bytes

Versions: 16

Compression:

Stored size: 991 Bytes

Contents

require 'paid'
require 'test/unit'
require 'mocha/setup'
require 'stringio'
require 'shoulda'
require File.expand_path('../test_data', __FILE__)
# require File.expand_path('../mock_resource', __FILE__)

# monkeypatch request methods
module Paid
  class << self
    attr_accessor :mock_rest_client
  end

  module Requester
    def self.request(method, url, params, headers)
      case method
      when :get then Paid::mock_rest_client.get(url, headers, params)
      when :put then Paid::mock_rest_client.put(url, headers, params)
      when :post then Paid::mock_rest_client.post(url, headers, params)
      when :delete then Paid::mock_rest_client.delete(url, headers, params)
      else
        raise "Invalid method"
      end
    end
  end
end

class ::Test::Unit::TestCase
  include Paid::TestData
  include Mocha

  setup do
    @mock = mock
    Paid.mock_rest_client = @mock
    Paid.api_key="foo"
  end

  teardown do
    Paid.mock_rest_client = nil
    Paid.api_key=nil
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
paid-1.2.1 test/test_helper.rb
paid-1.2.0 test/test_helper.rb
paid-1.1.4 test/test_helper.rb
paid-1.1.3 test/test_helper.rb
paid-1.1.2 test/test_helper.rb
paid-1.1.1 test/test_helper.rb
paid-1.1.0 test/test_helper.rb
paid-1.0.11 test/test_helper.rb
paid-1.0.10 test/test_helper.rb
paid-1.0.9 test/test_helper.rb
paid-1.0.8 test/test_helper.rb
paid-1.0.7 test/test_helper.rb
paid-1.0.6 test/test_helper.rb
paid-1.0.5 test/test_helper.rb
paid-1.0.3 test/test_helper.rb
paid-1.0.2 test/test_helper.rb