mirror of
https://github.com/postgres-haskell/postgres-wire.git
synced 2024-11-23 00:00:29 +03:00
16 lines
244 B
Haskell
16 lines
244 B
Haskell
import Test.Tasty (defaultMain, testGroup)
|
|
|
|
import Protocol
|
|
import Driver
|
|
import Fault
|
|
import Misc
|
|
|
|
main :: IO ()
|
|
main = defaultMain $ testGroup "Postgres-wire"
|
|
[ testProtocolMessages
|
|
, testDriver
|
|
, testFaults
|
|
, testMisc
|
|
]
|
|
|