wasp/stic/test/Main.hs
2019-02-17 14:04:24 +01:00

13 lines
243 B
Haskell

import qualified Test.Tasty
import Test.Tasty.Hspec
main :: IO ()
main = do
test <- testSpec "stic-test" spec
Test.Tasty.defaultMain test
spec :: Spec
spec = parallel $ do
it "is trivially true" $ do
True `shouldBe` True