theory / pgtap

PostgreSQL Unit Testing Suite

This URL has Read+Write access

theory (author)
Tue Oct 20 17:01:44 -0700 2009
commit  88195c5207cd0486606d71ac5a0547db92756ec0
tree    9d5070c712331b8cd9e464c5c864f274360bd923
parent  f6da63e47ba44d3ffad3387d14d07bf31d212995
pgtap / test_setup.sql.in
100644 21 lines (16 sloc) 0.312 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
\set QUIET 1
 
--
-- Tests for pgTAP.
--
--
-- Format the output for nice TAP.
\pset format unaligned
\pset tuples_only true
\pset pager
 
-- Revert all changes on failure.
\set ON_ERROR_ROLLBACK 1
\set ON_ERROR_STOP true
 
-- Load the TAP functions.
BEGIN;
\i pgtap.sql
 
-- ## SET search_path TO TAPSCHEMA,public;