postgres-wire/tests/test.hs
2017-02-02 00:18:06 +03:00

14 lines
214 B
Haskell

import Test.Tasty (defaultMain, testGroup)
import Protocol
import Driver
import Misc
main :: IO ()
main = defaultMain $ testGroup "Postgres-wire"
[ testProtocolMessages
, testDriver
, testMisc
]