Add a skeleton test suite.

main
Patrick Thomson 2019-10-29 14:15:52 -04:00
parent 22ef821297
commit db2ddf6d7f
2 changed files with 15 additions and 0 deletions

View File

@ -33,6 +33,17 @@ library
, fused-effects >= 1 , fused-effects >= 1
, transformers >= 0.4 && < 0.6 , transformers >= 0.4 && < 0.6
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
base
, fused-effects
, tasty ^>= 1.2
, tasty-hunit ^>= 0.10
, transformers
source-repository head source-repository head
type: git type: git
location: https://github.com/fused-effects/fused-effects-exceptions location: https://github.com/fused-effects/fused-effects-exceptions

4
test/Main.hs Normal file
View File

@ -0,0 +1,4 @@
module Main where
main :: IO ()
main = pure ()