separating tests.

This commit is contained in:
Kazu Yamamoto 2013-07-31 13:52:22 +09:00
parent 456601f607
commit 310ba6c504
3 changed files with 13 additions and 1 deletions

View File

@ -51,6 +51,18 @@ Library
, network-conduit
, random
Test-Suite network
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
Hs-Source-Dirs: test2
Ghc-Options: -Wall
Main-Is: Spec.hs
Other-Modules: LookupSpec
Build-Depends: dns
, base
, bytestring
, hspec
Test-Suite spec
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
@ -58,7 +70,6 @@ Test-Suite spec
Ghc-Options: -Wall
Main-Is: Spec.hs
Other-Modules: EncodeSpec
LookupSpec
Build-Depends: base
, attoparsec
, attoparsec-conduit

1
test2/Spec.hs Normal file
View File

@ -0,0 +1 @@
{-# OPTIONS_GHC -F -pgmF hspec-discover #-}