Sha256: 2509bc392fb99486abf48a82bc25083e097570dfe78313f3841a5577fb97aea2
Contents?: true
Size: 1.6 KB
Versions: 7
Compression:
Stored size: 1.6 KB
Contents
require File.expand_path('../../test_helper', __FILE__) module Paid class TransactionTest < Test::Unit::TestCase should "transactions should be listable" do @mock.expects(:get).once.returns(test_response(test_transaction_array)) c = Paid::Transaction.all assert c.data.kind_of? Array c.each do |transaction| assert transaction.kind_of?(Paid::Transaction) end end should "transactions should not be deletable" do assert_raises NoMethodError do @mock.expects(:get).once.returns(test_response(test_transaction)) c = Paid::Transaction.retrieve("test_transaction") c.delete end end should "transactions should be updateable" do @mock.expects(:get).once.returns(test_response(test_transaction)) @mock.expects(:post).once.returns(test_response(test_transaction)) c = Paid::Transaction.new("test_transaction") c.refresh c.mnemonic = "New transaction description" c.save end should "execute should return a new, fully executed transaction when passed correct parameters" do @mock.expects(:post).with do |url, api_key, params| url == "#{Paid.api_base}/v0/transactions" && api_key.nil? && CGI.parse(params) == { 'amount' => ['100'], 'description' => ['a description'], 'customer' => ['c_test_customer'] } end.once.returns(test_response(test_transaction)) c = Paid::Transaction.create({ :amount => 100, :description => 'a description', :customer => 'c_test_customer' }) assert !c.paid end end end
Version data entries
7 entries across 7 versions & 1 rubygems