pook icon indicating copy to clipboard operation
pook copied to clipboard

HTTP traffic mocking and testing made easy in Python

Results 22 pook issues
Sort by recently updated
recently updated
newest added

Since @wimglenn added the fixture directly into pook in #134, the tests that rely on `pytest-pook` should be updated to use it instead.

help wanted

It would be nice to be able to match request body JSON using an expected subset of the data. Something like: ```py (pook.post(url) .json({"id": identifier}, subset=True) .reply(200)) ``` As a...

enhancement