Metadata-Version: 2.4
Name: teststs
Version: 1.2.3
Summary: A Simple, Tiny Test Library for Python
Home-page: https://github.com/sinokadev/teststs
Author: Kanowara Sinoka
Author-email: sinok@sinoka.dev
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# Teststs
[![PyPI Downloads](https://static.pepy.tech/personalized-badge/teststs?period=total&units=INTERNATIONAL_SYSTEM&left_color=BLACK&right_color=GREEN&left_text=downloads)](https://pepy.tech/projects/teststs)
![PyPI - Version](https://img.shields.io/pypi/v/teststs)
![PyPI - License](https://img.shields.io/pypi/l/teststs)

No Classes, No Boilerplate, Use teststs

```bash
pip install teststs
```

PyPI: https://pypi.org/project/teststs/

## Using

```py
from teststs import teststs

def add_five(inp):
    return int(inp) + 5

tests = [
    ("5", 10),
    ("10", 15),
]

teststs(tests, add_five, detail=True)
teststs(tests, add_five, detail=False) # Default
```

If you want more usage, check out Docstring

## License

BSD-3-Clause license

## Star History

[![Star History Chart](https://api.star-history.com/svg?repos=sinokadev/teststs&type=date&legend=top-left)](https://www.star-history.com/#sinokadev/teststs&type=date&legend=top-left)
