Thin-wrapper around the mock package for easier use with pytest
Project description
This plugin provides a mocker fixture which is a thin-wrapper around the patching API provided by the mock package:
import os
class UnixFS:
@staticmethod
def rm(filename):
os.remove(filename)
def test_unix_fs(mocker):
mocker.patch('os.remove')
UnixFS.rm('file')
os.remove.assert_called_once_with('file')
Besides undoing the mocking automatically after the end of the test, it also provides other nice utilities such as spy and stub, and uses pytest introspection when comparing calls.
Professionally supported pytest-mock is available.
Documentation
For full documentation, please see https://pytest-mock.readthedocs.io/en/latest.
License
Distributed under the terms of the MIT license.
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
pytest-mock-3.9.0.tar.gz
(27.9 kB
view hashes)
Built Distribution
Close
Hashes for pytest_mock-3.9.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a1b9264224d026932d6685a0f9cef3b61d91563c3e74af9fe5afb2767e13812 |
|
MD5 | 2d487eee307521f0c16b6296e33e9d90 |
|
BLAKE2b-256 | e2d7a8e6c7bcd5f896eecf13446dfb46b73f3493ac5592fa8564e118a0923020 |