diff options
author | flywind <43030857+xflywind@users.noreply.github.com> | 2020-12-27 03:15:57 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-27 10:15:57 +0100 |
commit | b57df6d0b335595d3197eb6907fb8d1a8237fc7e (patch) | |
tree | 6fe2b889652b9bbce535633c7c826cc2873435bb /doc | |
parent | 3f9a2ebea5c0b02bcfcfe77ada36c33187bbf8bb (diff) | |
download | Nim-b57df6d0b335595d3197eb6907fb8d1a8237fc7e.tar.gz |
Don't use `unittest.suite` and `unittest.test` (#16464)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/contributing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/contributing.rst b/doc/contributing.rst index 90330e4f4..34c963410 100644 --- a/doc/contributing.rst +++ b/doc/contributing.rst @@ -47,7 +47,7 @@ which only gets executed when the tester is building the file. Each test should be in a separate ``block:`` statement, such that each has its own scope. Use boolean conditions and ``doAssert`` for the testing by itself, don't rely on echo statements or similar; in particular, avoid -things like `echo "done"`. +things like `echo "done"`. Don't use `unittest.suite` and `unittest.test`. Sample test: |