aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/Test/Graylog/UDP.hs
diff options
context:
space:
mode:
Diffstat (limited to 'test/Test/Graylog/UDP.hs')
-rw-r--r--test/Test/Graylog/UDP.hs13
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 @@
1module Test.Graylog.UDP where
2
3import Test.Tasty
4import Test.Tasty.HUnit
5
6tests :: TestTree
7tests = testGroup "Test.Graylog.UDP"
8 [ testCase "Validation: Something" case_validateSomething
9 ]
10
11case_validateSomething :: IO ()
12case_validateSomething = return ()
13