diff options
author | AndrewRademacher <andrew.rademacher@smrxt.com> | 2016-02-24 17:24:19 -0600 |
---|---|---|
committer | AndrewRademacher <andrew.rademacher@smrxt.com> | 2016-02-24 17:24:19 -0600 |
commit | 15981d57cda18a19fcb3012172a9f0994abfd97a (patch) | |
tree | b309de32b39b432ea63a275cb3db7bc4d4dd5415 /test/Test | |
parent | 526966434f2248c1200427677dc3882668714693 (diff) | |
download | haskell-graylog-15981d57cda18a19fcb3012172a9f0994abfd97a.tar.gz haskell-graylog-15981d57cda18a19fcb3012172a9f0994abfd97a.tar.zst haskell-graylog-15981d57cda18a19fcb3012172a9f0994abfd97a.zip |
Added testing for UDP method.
Diffstat (limited to 'test/Test')
-rw-r--r-- | test/Test/Graylog/UDP.hs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/Test/Graylog/UDP.hs b/test/Test/Graylog/UDP.hs new file mode 100644 index 0000000..67da6fe --- /dev/null +++ b/test/Test/Graylog/UDP.hs | |||
@@ -0,0 +1,13 @@ | |||
1 | module Test.Graylog.UDP where | ||
2 | |||
3 | import Test.Tasty | ||
4 | import Test.Tasty.HUnit | ||
5 | |||
6 | tests :: TestTree | ||
7 | tests = testGroup "Test.Graylog.UDP" | ||
8 | [ testCase "Validation: Something" case_validateSomething | ||
9 | ] | ||
10 | |||
11 | case_validateSomething :: IO () | ||
12 | case_validateSomething = return () | ||
13 | |||