1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
#!/usr/bin/perl -w
%main::tests = (
'any' => {
'comment' => 'Function test for any versions.',
'data' => [],
'tests' => [qw(
doc-pickDeliver
doc-pickDeliverEuclidean
lc101
)],
'documentation' => [qw(
doc-pickDeliver
doc-pickDeliverEuclidean
lc101
)],
#put here the ones that you are not testing (just a place holder)
'nottesting' => [qw(
past_example
jet_customers
differentVechiles
jet_customers1
book_from_query
)]
},
);
# '../../../tools/testers/pickDeliver_pgtap_data.sql',
1;
|