Mountebank wrapper for mocking HTTP APIs
Project description
# Mountebank
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"
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.0.4.tar.gz
(2.9 kB
view details)
File details
Details for the file pymountebank-1.0.4.tar.gz.
File metadata
- Download URL: pymountebank-1.0.4.tar.gz
- Upload date:
- Size: 2.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9829cd720a02b76a780eb563ff05ab910b9a0829fee90315068b7151679116d7
|
|
| MD5 |
7fc088c3731885538b338bc6f9a67dfb
|
|
| BLAKE2b-256 |
0b86ea85bb199cb82cf64b63ed0d189724cddcc617d22d24fa464b37a691117a
|