blob: 604b65aae3d7fc72815525daab3f1cd6b2b84a9f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import qualified Test.Graylog.UDP (tests)
import Test.Tasty
main :: IO ()
main = defaultMain tests
tests :: TestTree
tests = testGroup "Graylog Library"
[ Test.Graylog.UDP.tests
]
|