Metadata-Version: 2.1
Name: utesting
Version: 2.1.0
Summary: Module for unit testing
Author: s0urce
Author-email: boyarkin.gleb@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# utesting

GitHub: https://github.com/s0urce18/utesting

Python module for unit testing

`test(group, output)` — test test group

`test_async(group, output)` — async version of test

`@mark_test_unit(cases, asynchronou, only_errors, no_print)` — decorator for marking test unit

`add_test_unit(callback, asynchronous, only_errors, no_print)` — same as mark_test_unit, but can't be used as decorator

`test_all(file_name)` — running testing all marked(added) units

`test_all_asyc(file_name)` — async version of test_all

And other documentation in `utesting/__init__.py` and examples in `utesting/examples.py`
