Sha256: 175823fd171b301cec29ee0a35c1b0d3e7f310ad8340aa456d16c8a6d9acd443

Contents?: true

Size: 657 Bytes

Versions: 8

Compression:

Stored size: 657 Bytes

Contents

require_relative '../test/core_pro_test_base'
require_relative '../lib/corepro/transaction'

class AkTransactionTest < CoreProTestBase
  def test_01_list
    ts = CorePro::Transaction.list @@exampleCustomerId, @@exampleAccountId, nil, nil, nil, nil, nil, @@exampleConn, nil
    assert ts.length > 0
  end

  def test_02_get
    ts = CorePro::Transaction.get @@exampleCustomerId, @@exampleProgramReserveToInternalTransactionId, @@exampleConn, nil
    assert ts.length > 0
  end

  def test_03_getByTag
    ts = CorePro::Transaction.getByTag @@exampleCustomerId, @@exampleExternalToInternalTransactionTag, @@exampleConn, nil
    assert ts.length > 0
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
corepro_fvr-1.0.9 test/ak_transaction_test.rb
corepro_eg-1.0.8 test/ak_transaction_test.rb
corepro_eg-1.0.7 test/ak_transaction_test.rb
corepro_eg-1.0.6 test/ak_transaction_test.rb
corepro_eg-1.0.5 test/ak_transaction_test.rb
corepro_eg-1.0.4 test/ak_transaction_test.rb
corepro_eg-1.0.3 test/ak_transaction_test.rb
corepro_eg-1.0.2 test/ak_transaction_test.rb