]> git.immae.eu Git - github/fretlink/haskell-graylog.git/blame - test/Main.hs
Added testing for UDP method.
[github/fretlink/haskell-graylog.git] / test / Main.hs
CommitLineData
15981d57
A
1import qualified Test.Graylog.UDP (tests)
2
3import Test.Tasty
4
5main :: IO ()
6main = defaultMain tests
7
8tests :: TestTree
9tests = testGroup "Graylog Library"
10 [ Test.Graylog.UDP.tests
11 ]
12