https://github.com/zaquestion/unittestz
https://github.com/zaquestion/unittestz
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zaquestion/unittestz
- Owner: zaquestion
- License: mit
- Created: 2016-01-28T03:45:39.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-05T04:22:34.000Z (almost 10 years ago)
- Last Synced: 2025-01-30T10:41:44.195Z (12 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
unittestZ
--
Install
--
```
pip install unittestZ
```
Usage
--
```
from unittestZ.assertion import *
# Or your prefered method
>> assert_equal("a", "b")
file.py:L# self.assert_equal("a", "b")
Actual: a
Expect: b
>> AssertEqual("a", "b")
< same as above >
```