Sha256: 22b43ee28b78e54fcc258861e12b862f45856260a4cd057400294786c4564826
Contents?: true
Size: 675 Bytes
Versions: 2
Compression:
Stored size: 675 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
corepro-1.0.1 | test/ak_transaction_test.rb |
corepro-1.0.0 | test/ak_transaction_test.rb |