aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/Main.hs
diff options
context:
space:
mode:
authorAndrewRademacher <andrew.rademacher@smrxt.com>2016-02-24 17:24:19 -0600
committerAndrewRademacher <andrew.rademacher@smrxt.com>2016-02-24 17:24:19 -0600
commit15981d57cda18a19fcb3012172a9f0994abfd97a (patch)
treeb309de32b39b432ea63a275cb3db7bc4d4dd5415 /test/Main.hs
parent526966434f2248c1200427677dc3882668714693 (diff)
downloadhaskell-graylog-15981d57cda18a19fcb3012172a9f0994abfd97a.tar.gz
haskell-graylog-15981d57cda18a19fcb3012172a9f0994abfd97a.tar.zst
haskell-graylog-15981d57cda18a19fcb3012172a9f0994abfd97a.zip
Added testing for UDP method.
Diffstat (limited to 'test/Main.hs')
-rw-r--r--test/Main.hs12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/Main.hs b/test/Main.hs
new file mode 100644
index 0000000..604b65a
--- /dev/null
+++ b/test/Main.hs
@@ -0,0 +1,12 @@
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