Skip to content

kaste/mockito-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

98d333e · Jan 24, 2025
Nov 8, 2024
Jan 24, 2025
Jan 24, 2025
Jan 24, 2025
Jan 24, 2025
Sep 4, 2024
Dec 7, 2018
Nov 16, 2023
Nov 8, 2024
Nov 16, 2023
Oct 21, 2013
Jan 24, 2025
Nov 25, 2019
Jan 19, 2017
Mar 4, 2024
Nov 25, 2019
Jan 24, 2025
Apr 22, 2024
Nov 8, 2024
Nov 8, 2024
Mar 4, 2024

Repository files navigation

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

http://mockito-python.readthedocs.io/en/latest/

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