Metadata-Version: 2.1
Name: lest
Version: 0.1.0
Summary: Light Python library for testing.
Author-email: wchistow <wchistow@yandex.ru>
Project-URL: Homepage, https://github.com/wchistow/lest
Project-URL: Bug Tracker, https://github.com/wchistow/lest/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# Lest

## Light Python library for testing

## Example:

Code:

```python
import lest


@lest.register
def test_adding_two_and_two():
    assert 2 + 2 == 4


@lest.register
def some_error_test():
    assert 2 + 2 == 5


lest.run()
```

Output:

```text
Running [test_adding_two_and_two]... OK
Running [some_error_test]... FAILED:
Traceback (most recent call last):
  File "E:\vladimir\Python\lest\src\lest\runner.py", line 23, in run
    func()
  File "E:\vladimir\Python\lest\src\test.py", line 11, in some_error_test
    assert 2 + 2 == 5
AssertionError

Run 2 tests:
   + Successful: 1
   + Failed: 1
   + Time elapsed: 0.000
```
