An open API service indexing awesome lists of open source software.

https://github.com/zaquestion/unittestz


https://github.com/zaquestion/unittestz

Last synced: 10 months ago
JSON representation

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 >
```