Skip to content

Instantly share code, notes, and snippets.

View Joshuaalbert's full-sized avatar

Joshua George Albert Joshuaalbert

View GitHub Profile
@holgi
holgi / asyncio-mock-example.py
Created January 30, 2019 13:31
Example for mocking async context managers
import pytest
import aiohttp
import asyncio
from asynctest import CoroutineMock, MagicMock, patch
# Example Code
async def fetch(session, url):