Metadata-Version: 2.1
Name: Vigilant
Version: 1.0.1
Summary: Create and run tests easily.
Home-page: https://github.com/ZSendokame/Vigilant
Author: ZSendokame
License: MIT license
Platform: UNKNOWN
Description-Content-Type: text/markdown

# Vigilant
*Vigilant* is a small library, trying to make testing easier.<br>

`pip install Vigilant`

# How to use
After installing the library:
```py
from vigilant import test, run


@test('Description', args={'number': 1})
def demonstration(number):
    assert 1 + number == 2


run()  # Run all tests.

# PASS  demonstration:4 -> Description.

# Failing: 0
# Passed: 1
```

