diff --git a/fused-effects-exceptions.cabal b/fused-effects-exceptions.cabal index 0a17efd..a104594 100644 --- a/fused-effects-exceptions.cabal +++ b/fused-effects-exceptions.cabal @@ -33,6 +33,17 @@ library , fused-effects >= 1 , 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 type: git location: https://github.com/fused-effects/fused-effects-exceptions diff --git a/test/Main.hs b/test/Main.hs new file mode 100644 index 0000000..89ad4b3 --- /dev/null +++ b/test/Main.hs @@ -0,0 +1,4 @@ +module Main where + +main :: IO () +main = pure ()