chatdesk-ui/postgres_15.8.1.044/nix/tests/smoke/0000-hello-world.sql

11 lines
192 B
PL/PgSQL

-- Start transaction and plan the tests.
BEGIN;
SELECT plan(1);
-- Run the tests.
SELECT pass( 'My test passed, w00t!' );
-- Finish the tests and clean up.
SELECT * FROM finish();
ROLLBACK;