mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-12-14 22:32:07 +03:00
15 lines
252 B
Haskell
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" [])
|