Simple API testing with pytest
Project description
A pytest plugin for super simple API testing.
Using the api fixture
The api fixture, acts as a pass through to a requests.Session object, meaning you can make your API calls from it like so:
def test_my_get_function(api):
response = api.get('/my-get-endpoint')
assert response.status_code == 200
Anything you can usually do through requests.Session you can do through this fixture, but you only need to pass the url extension, meaning you can run these same tests on any running instance of your application.
TODO
Add option to read base url from config.
Tests.
Add documentation.
Add decorator to read mock from json file.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pytest-easy-api-0.0.3.tar.gz
(2.2 kB
view hashes)