Tag

unittest.mock

0 views collected around this technical thread.

Test Development Learning Exchange
Test Development Learning Exchange
Jan 3, 2025 · Backend Development

How to Mock External Services in pytest Using unittest.mock

This guide explains how to install pytest, create a module with a function that calls an external API, and use unittest.mock fixtures and helper functions to mock requests.get for both successful and failing responses, then run the tests with pytest.

MockingPythonbackend
0 likes · 9 min read
How to Mock External Services in pytest Using unittest.mock
Test Development Learning Exchange
Test Development Learning Exchange
Nov 26, 2024 · Fundamentals

How to Encapsulate and Call Mock Services in pytest

This tutorial demonstrates how to use pytest together with Python's unittest.mock module to mock external HTTP requests, covering fixture creation, mock response setup, and writing test cases for both successful and failed API calls.

API mockingMockingPython
0 likes · 9 min read
How to Encapsulate and Call Mock Services in pytest