An open API service indexing awesome lists of open source software.

https://github.com/serokell/tasty-hunit-compat

Tasty integration with the existing HUnit package.
https://github.com/serokell/tasty-hunit-compat

haskell hunit tasting tasty

Last synced: 6 months ago
JSON representation

Tasty integration with the existing HUnit package.

Awesome Lists containing this project

README

          

# Tasty-hunit-compat

![Build status](https://github.com/serokell/tasty-hunit-compat/workflows/CI/badge.svg)

This library implements the integration between [tasty](https://hackage.haskell.org/package/tasty) and [HUnit](https://hackage.haskell.org/package/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 [↑](#tasty-hunit-compat)

Run `make` to build everything.

## Usage [↑](#tasty-hunit-compat)

Use `testCase` or more advanced primitives to lift HUnit's `Assertion` to tasty's `TestTree`.

Commonly useful methods from `HUnit` are also re-exported.

```haskell
import Test.Tasty (TestTree)
import Test.Tasty.HUnit (testCase, (@?=))

test_Reversals :: [TestTree]
test_Reversals =
[ testCase "Simple case" $
reverse "abc" @?= "cba"
]
```

## Issue Tracker [↑](#tasty-hunit-compat)

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 [↑](#tasty-hunit-compat)

Please see [CONTRIBUTING.md](.github/CONTRIBUTING.md) for more information.

## About Serokell [↑](#tasty-hunit-compat)

`tasty-hunit-compat` is maintained and funded with ❤️ by [Serokell](https://serokell.io/).
The names and logo for Serokell are trademark of Serokell OÜ.

We love open source software! See [our other projects](https://serokell.io/community?utm_source=github) or [hire us](https://serokell.io/contacts?utm_source=github) to design, develop and grow your idea!