aboutsummaryrefslogtreecommitdiffstats
path: root/test/00-setup.sql
diff options
context:
space:
mode:
Diffstat (limited to 'test/00-setup.sql')
-rw-r--r--test/00-setup.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/00-setup.sql b/test/00-setup.sql
new file mode 100644
index 0000000..93ceb03
--- /dev/null
+++ b/test/00-setup.sql
@@ -0,0 +1,10 @@
+SET client_min_messages TO WARNING;
+CREATE EXTENSION IF NOT EXISTS pgtap;
+
+BEGIN;
+SELECT plan(1);
+
+SELECT has_schema('teamdraft');
+
+SELECT * FROM finish();
+ROLLBACK;