diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-11-22 22:59:56 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-11-22 22:59:56 +0000 |
commit | 44e66497c837e9218e9460873623495d1cf31bca (patch) | |
tree | 4ce80373c183c76a09af40ede28bd4d827283127 /sql/modules/test | |
parent | 4119461903f06f70dde3a184af1244d7543dd7d0 (diff) |
Correcting bad join which caused payable batches not to show up in batch details
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@2416 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'sql/modules/test')
-rw-r--r-- | sql/modules/test/Voucher.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/modules/test/Voucher.sql b/sql/modules/test/Voucher.sql index d749bf09..467d3d38 100644 --- a/sql/modules/test/Voucher.sql +++ b/sql/modules/test/Voucher.sql @@ -26,6 +26,9 @@ values (-5, currval('batch_id_seq'), 3); INSERT INTO voucher (trans_id, batch_id, batch_class) values (-5, currval('batch_id_seq'), 3); +INSERT INTO test_result(test_name, success) +select 'Voucher Seach finds Payable Vouchers', count(*)=1 +from voucher_list( currval('batch_id_seq')::int); INSERT INTO test_result (test_name, success) SELECT 'partial payment support', count(*) > 1 |