Tasty-hunit-compat
This library implements the integration between tasty and HUnit packages.
The way tasty provides this integration is reimplementing HUnit primitives, and this does not work with test suites written with the original HUnit library.
One issue we are aware of is that test failures are treated as plain exceptions, not true failures.
Build Instructions ↑
Run make
to build everything.
Usage ↑
Use testCase
or more advanced primitives to lift HUnit’s Assertion
to tasty’s TestTree
.
Commonly useful methods from HUnit
are also re-exported.
import Test.Tasty (TestTree)
import Test.Tasty.HUnit (testCase, (@?=))
test_Reversals :: [TestTree]
test_Reversals =
[ testCase "Simple case" $
reverse "abc" @?= "cba"
]
Issue Tracker ↑
We use GitHub issues as our issue tracker.
You can login using your GitHub account to leave a comment or create a new issue.
For Contributors ↑
Please see CONTRIBUTING.md for more information.
About Serokell ↑
tasty-hunit-compat
is maintained and funded with ❤️ by Serokell.
The names and logo for Serokell are trademark of Serokell OÜ.
We love open source software! See our other projects or hire us to design, develop and grow your idea!