https://github.com/mr-cheff/pytests
Write small or big tests with PyTests a (testing framework)
https://github.com/mr-cheff/pytests
pytest python testing unittest
Last synced: 10 months ago
JSON representation
Write small or big tests with PyTests a (testing framework)
- Host: GitHub
- URL: https://github.com/mr-cheff/pytests
- Owner: mr-cheff
- License: mit
- Created: 2021-11-10T21:22:00.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-11-08T16:10:08.000Z (over 2 years ago)
- Last Synced: 2024-11-22T03:03:13.683Z (over 1 year ago)
- Topics: pytest, python, testing, unittest
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PyTests
Write small or big tests with PyTests a testing framework
## Usage
NOTE: Things might change
```py
from pytests import PyTest
tests = PyTest()
def my_test():
return True
tests.new(
my_test, # Function with out calling
name="My test",
description="",
result=True,
#....
)
tests.run_all()
```