agora/test/Spec.hs
2022-02-14 12:11:34 +00:00

18 lines
483 B
Haskell

--------------------------------------------------------------------------------
import Prelude
--------------------------------------------------------------------------------
import Test.Tasty (defaultMain, testGroup)
import Test.Tasty.HUnit (assertBool, testCase)
--------------------------------------------------------------------------------
main :: IO ()
main =
defaultMain $
testGroup
"Suites"
[ testCase "will fail" $ assertBool "false" False
]