postgres-wire/tests/test.hs

16 lines
244 B
Haskell
Raw Normal View History

2017-01-29 01:48:25 +03:00
import Test.Tasty (defaultMain, testGroup)
2017-01-28 23:57:58 +03:00
2017-01-29 01:48:25 +03:00
import Protocol
2017-02-13 17:30:39 +03:00
import Driver
2017-02-13 18:27:50 +03:00
import Fault
2017-02-02 00:18:06 +03:00
import Misc
2017-01-28 01:31:06 +03:00
main :: IO ()
main = defaultMain $ testGroup "Postgres-wire"
2017-01-29 01:48:25 +03:00
[ testProtocolMessages
2017-02-13 17:30:39 +03:00
, testDriver
2017-02-13 18:27:50 +03:00
, testFaults
2017-02-02 00:18:06 +03:00
, testMisc
2017-01-28 01:31:06 +03:00
]