Skip to content

sanjacob/pytest-tiny-api-client

Repository files navigation

pytest-tiny-api-client

License: GPL  v2

An official companion pytest plugin for the tiny-api-client library.

from my_api import MyClient

def test_my_client(api_call):
    api_call.return_value = {"name": "Peter"}
    user = MyClient().find_user(user_id=...)
    assert user.name == "Peter"

One of the problems with testing functions that have been decorated is that decoration happens at import time, which means the decorators cannot be patched within each test without having to re-import the modules.

This plugin will patch these decorators at import time, and allow you to patch the implementation during testing. To make this easier, this plugin exposes the api_call fixture, which is a unittest.mock.Mock object which can be used to test your endpoint methods with fake data.

For more details on how to use this fixture, check the documentation.

Installation

pip install pytest-tiny-api-client

Documentation

You can find the documentation at https://tiny-api-client.readthedocs.io

License

License: LGPL  v2.1

This software is distributed under the Lesser General Public License v2.1, more information available at the Free Software Foundation.

About

The official companion pytest plugin for tiny-api-client

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

 
 
 

Languages