https://github.com/pytest-with-eric/pytest-mock-multiple-return-values-example
How To Return Multiple Values From Pytest Mock (Practical Guide)
https://github.com/pytest-with-eric/pytest-mock-multiple-return-values-example
mock mocking pytest-mock pytest-mocker
Last synced: about 1 month ago
JSON representation
How To Return Multiple Values From Pytest Mock (Practical Guide)
- Host: GitHub
- URL: https://github.com/pytest-with-eric/pytest-mock-multiple-return-values-example
- Owner: Pytest-with-Eric
- Created: 2023-11-10T14:57:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-20T04:45:01.000Z (over 1 year ago)
- Last Synced: 2025-01-29T12:29:54.684Z (3 months ago)
- Topics: mock, mocking, pytest-mock, pytest-mocker
- Language: Python
- Homepage: https://pytest-with-eric.com/pytest-advanced/pytest-mock-multiple-return-values/
- Size: 5.86 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pytest Mock Return Multiple Values Example
This repo contains the sample code for the article on [How To Return Multiple Values From Pytest Mock (Practical Guide)](https://pytest-with-eric.com/pytest-advanced/pytest-mock-multiple-return-values/)Handling multiple return values from a mock becomes essential in scenarios where a function you're testing expects multiple values from a dependency. This guide will walk you through the intricacies of achieving that with Python's Mock library.
# Requirements
* Python (3.11.4)Please install the dependencies via the `requirements.txt` file using
```commandline
pip install -r requirements.txt
```
If you don't have Pip installed please follow instructions online on how to do it.# How To Run the Unit Tests
To run the Unit Tests, from the root of the repo run
```commandline
pytest -v -s
```If you have any questions about the project please raise an Issue on GitHub.