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.2.0.tar.gz
(4.8 kB
view details)
File details
Details for the file pymountebank-1.2.0.tar.gz.
File metadata
- Download URL: pymountebank-1.2.0.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f8616378baadfdc903e317e5a3639dacebda3b028ba79b5959d6316ddaa6b34
|
|
| MD5 |
2d984b0b88efa68efcff876d361b7a22
|
|
| BLAKE2b-256 |
d599d856d6b32eeec84bb1a7385cc6f219ef3703cadf3a540e63c19417a1e79e
|