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 /graylog.cabal | |
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 'graylog.cabal')
-rw-r--r-- | graylog.cabal | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/graylog.cabal b/graylog.cabal index d7d1163..b3c1a53 100644 --- a/graylog.cabal +++ b/graylog.cabal | |||
@@ -24,7 +24,33 @@ library | |||
24 | 24 | ||
25 | , aeson | 25 | , aeson |
26 | , aeson-casing | 26 | , aeson-casing |
27 | , network | ||
27 | , scientific | 28 | , scientific |
28 | , text | 29 | , text |
29 | , time | 30 | , time |
30 | , vector | 31 | , vector |
32 | |||
33 | test-suite test-state | ||
34 | type: exitcode-stdio-1.0 | ||
35 | main-is: Main.hs | ||
36 | hs-source-dirs: test | ||
37 | default-language: Haskell2010 | ||
38 | |||
39 | ghc-options: -Wall -threaded -with-rtsopts=-N -rtsopts | ||
40 | |||
41 | other-modules: Test.Graylog.UDP | ||
42 | |||
43 | build-depends: base ==4.* | ||
44 | |||
45 | , graylog | ||
46 | |||
47 | , aeson | ||
48 | , aeson-casing | ||
49 | , network | ||
50 | , scientific | ||
51 | , tasty | ||
52 | , tasty-hunit | ||
53 | , text | ||
54 | , time | ||
55 | , vector | ||
56 | |||