Spying framework
Project description
Mockito is a spying framework originally based on the Java library with the same name. (Actually we invented the strict stubbing mode back in 2009.)
Install
pip install mockito
Quick Start
90% use case is that you want to stub out a side effect.
from mockito import when, mock, 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/')
# clean up
unstub()
Read the docs
Development
I use rye, and if you do too: you just clone this repo to your computer, then run rye sync in the root directory. Finally, activate the virtualenv. (rye shell gives you a hint on how to do that.)
pytest
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mockito-1.5.5.tar.gz.
File metadata
- Download URL: mockito-1.5.5.tar.gz
- Upload date:
- Size: 60.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49826e3901dc826d0204e93b16dce1c61dde9d3a94eadc9c209ab0e130283393
|
|
| MD5 |
d34504b62fb92bbd11df3d42322895ba
|
|
| BLAKE2b-256 |
247112c56464071524a7941744e8b8fb02c6614500d27475c2d643d2e780a4b0
|
File details
Details for the file mockito-1.5.5-py3-none-any.whl.
File metadata
- Download URL: mockito-1.5.5-py3-none-any.whl
- Upload date:
- Size: 30.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
422a6ce2666e3c32d756547b98ee67e83a339f457e132476689643015845fc36
|
|
| MD5 |
8c816ca17b2a01d1be3578bb19f2e008
|
|
| BLAKE2b-256 |
fff0fc3475ef7732d080c6a555e4ce12e606c699e82e220eb4bcafb9e801fc07
|