postgres-wire/tests/test.hs
VyacheslavHashov 6f87e60770 Test passing
2017-02-13 18:27:50 +03:00

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
]