nimsuite
a simple test framework for nim.
Summary
| Latest Version | 0.1.0 |
|---|---|
| License | MIT |
| CI Status | Failing |
| Downloads | 0 |
| Last Indexed | 2026-07-24 13:05 |
Tags
Authors
- c6h4clch3
Installation
nimble install nimsuite
choosenim install nimsuite
git clone https://github.com/c6h4clch3/NimSuite
OS Compatibility
| Platform | Linux | macOS | Windows | FreeBSD | OpenBSD | NetBSD | Android | iOS | WASM | Embedded |
|---|---|---|---|---|---|---|---|---|---|---|
| nimsuite | ✓ | ✓ | ✓ | - | - | - | - | - | - | - |
Dependencies
| Package | Version | Optional |
|---|---|---|
| nim >= | 1.0.4 | No |
Source
| Repository | https://github.com/c6h4clch3/NimSuite |
|---|---|
| Homepage | https://github.com/c6h4clch3/NimSuite |
| Registry Source | nimble_official |
README
NimSuite
NimSuite is a simple unit test framework, based on Nimble's standard unit tests.
As nimble test, NimSuite runs the test of .nim file which is under /tests directory and filename starts with t.
However, compiler messages are supressed by default and it displays the number of the test cases, the number of the passed cases and the number of the failed cases.
Usage
$ nimble install nimsuite
$ nimsuite
Nimsuite looks the current directory for tests directory, then compile and execute tests.
Options
verbose
$ nimsuite --verbose
displays all of compiler message.
clean
$ nimsuite --clean
removes test binary after execute it.