nim-unittest2/README.md

37 lines
746 B
Markdown
Raw Normal View History

## description
**unittest2** is a fork of the [unittest](https://nim-lang.org/docs/unittest.html) module in the
[Nim](https://nim-lang.org/) standard library, with a focus on parallel test
execution.
This fork was originally a pull request: [https://github.com/nim-lang/Nim/pull/9724](https://github.com/nim-lang/Nim/pull/9724)
## testing
```text
nimble test
```
## installation
```text
nimble install
```
## usage
Replace `import unittest` with `import unittest2` and see the [unittest2.html]() documentation generated by `nim doc unittest2.nim`.
## license
MIT
## credits
- original author: Zahary Karadjov
- fork author: Ștefan Talpalaru <stefantalpalaru@yahoo.com>
- homepage: https://github.com/stefantalpalaru/nim-unittest2