From a2f12fde53ee811793cbdc721caef53d0b291b7d Mon Sep 17 00:00:00 2001 From: Rogan Hamby Date: Wed, 2 Nov 2016 15:23:26 -0400 Subject: [PATCH] unit test --- Open-ILS/src/sql/Pg/t/lp1365073_postal_codes.pg | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Open-ILS/src/sql/Pg/t/lp1365073_postal_codes.pg 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; + -- 2.11.0