Added failing test
This commit is contained in:
parent
e55168fce8
commit
4cc3a5f792
3 changed files with 10 additions and 1 deletions
|
|
@ -5,8 +5,14 @@ import Prelude
|
|||
--------------------------------------------------------------------------------
|
||||
|
||||
import Test.Tasty (defaultMain, testGroup)
|
||||
import Test.Tasty.HUnit (assertBool, testCase)
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
main :: IO ()
|
||||
main = defaultMain $ testGroup "Suites" []
|
||||
main =
|
||||
defaultMain $
|
||||
testGroup
|
||||
"Suites"
|
||||
[ testCase "will fail" $ assertBool "false" False
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue