From: Rogan Hamby Date: Wed, 2 Nov 2016 19:23:26 +0000 (-0400) Subject: unit test X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a2f12fde53ee811793cbdc721caef53d0b291b7d;p=working%2FEvergreen.git unit test --- diff --git a/Open-ILS/src/sql/Pg/t/lp1365073_postal_codes.pg b/Open-ILS/src/sql/Pg/t/lp1365073_postal_codes.pg new file mode 100644 index 0000000000..1089cda172 --- /dev/null +++ b/Open-ILS/src/sql/Pg/t/lp1365073_postal_codes.pg @@ -0,0 +1,15 @@ +-- Load the TAP functions. +BEGIN; + +-- Plan the tests. +SELECT plan(1); + +-- Run the tests. +-- make sure at least one column does exist +SELECT has_table('config', 'postal_codes', + 'Table "config.postal_codes" should exist'); + +-- Finish the tests and clean up. +SELECT * FROM finish(); +ROLLBACK; +