diff --git a/haskell-library-template.cabal b/haskell-library-template.cabal index 446a1d1..d5104b8 100644 --- a/haskell-library-template.cabal +++ b/haskell-library-template.cabal @@ -117,6 +117,7 @@ test-suite spec main-is: Spec.hs other-modules: SpecHook + WhateverSpec Paths_haskell_library_template hs-source-dirs: tests diff --git a/tests/WhateverSpec.hs b/tests/WhateverSpec.hs new file mode 100644 index 0000000..4705b6b --- /dev/null +++ b/tests/WhateverSpec.hs @@ -0,0 +1,8 @@ +module WhateverSpec (spec) where + +import Prelude + +import Test.Hspec + +spec :: Spec +spec = pure () -- Tests go here