123456789101112131415161718 |
- # frozen_string_literal: true
- require 'test_helper'
- class TransactionTest < Test::Unit::TestCase
- def setup
- super
- fake("orders/450789469/transactions/389404469", method: :get, body: load_fixture('transaction'))
- end
- context "Transaction" do
- context "#find" do
- should "find a specific transaction" do
- transaction = ShopifyAPI::Transaction.find(389404469, params: { order_id: 450789469 })
- assert_equal("409.94", transaction.amount)
- end
- end
- end
- end
|