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
|
#!/usr/bin/perl -w
%main::tests = (
'any' => {
'comment' => 'Function test for any versions.',
'data' => [],
'tests' => [qw(
doc-MY_FUNCTION_NAME
)],
'documentation' => [qw(
doc-MY_FUNCTION_NAME
)],
#put here the ones that you are not testing (just a place holder)
'nottesting' => [qw(
)]
},
# I dont know what this are for or how to use them.
# TODO ask Steve
# 'vpg-vpgis' => {}, # for version specific tests
# '8-1' => {}, # for pg 8.x and postgis 1.x
# '9.2-2.1' => {}, # for pg 9.2 and postgis 2.1
);
1;
|