Spying framework
Project description
Mockito is a spying framework originally based on the Java library with the same name.
Install
pip install mockito
Quick Start
90% use case is that you want to stub out a side effect.
from mockito import when, unstub
when(os.path).exists('/foo').thenReturn(True)
# or:
import requests # the famous library
# you actually want to return a Response-like obj, we'll fake it
response = mock({'status_code': 200, 'text': 'Ok'})
when(requests).get(...).thenReturn(response)
# use it
requests.get('http://google.com/')
Read the docs
http://mockito-python.readthedocs.io/en/latest/
Run the tests
pip install pytest py.test
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mockito-1.0.5.tar.gz
(33.0 kB
view details)
File details
Details for the file mockito-1.0.5.tar.gz.
File metadata
- Download URL: mockito-1.0.5.tar.gz
- Upload date:
- Size: 33.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e58b0faa8d25cb175cd471ba5f6590b68fa20bf65e7b9cc958b54c809beda3d0
|
|
| MD5 |
ffebefece0aa171306a6f485be6dc24f
|
|
| BLAKE2b-256 |
8f7b051d809cfb3050781e6ed2f2e35f3daad64009426a8d94a3306540cccae8
|