haskell-relational-record/schema-th/pgTest/PgTest.hs

15 lines
252 B
Haskell

{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE MultiParamTypeClasses #-}
module PgTest (
tests
) where
import Distribution.TestSuite (Test)
import PgTestDataSource (defineTable)
tests :: [Test]
tests = []
$(defineTable "TEST" "test_table0" [])