Mountebank wrapper for mocking HTTP APIs
Project description
This is a simple wrapper library around mountebank. It’s useful for mocking HTTP API services.
Usage
from mountebank import Imposter
imposter = Imposter()
imposter.add_stub("/text", "GET", "What I'm expecting")
with imposter.mockhttp() as url:
assert requests.get(url + "/test").text == "What I'm expecting"
Development
To run the containers:
docker-compose up --build
To test:
docker-compose exec tests /bin/bash -c "cd /apps/mountebank/tests;pytest" docker-compose exec tests2 /bin/bash -c "cd /apps/mountebank/tests;pytest"
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
pymountebank-1.1.0.tar.gz
(4.4 kB
view details)
File details
Details for the file pymountebank-1.1.0.tar.gz.
File metadata
- Download URL: pymountebank-1.1.0.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6968b37a7c03ba47bff30fed4ed28d45966daa3deaa20d1ba5371884fdd7e7e9
|
|
| MD5 |
312d994643bf20cd5271f75b444b5f83
|
|
| BLAKE2b-256 |
50b982c3c761c20a42d2284e88e413017c29a09971faed45351ece9e03ced940
|