🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

fw-http-testserver

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fw-http-testserver

HTTP test server for mocking services

1.2.3
PyPI
Maintainers
1

fw-http-testserver

HTTP test server for stubbing / mocking 3rd party services.

Installation

Add as a poetry dev dependency to your project:

poetry add --dev fw-http-testserver

Usage

import requests
pytest_plugins = "fw_http_testserver"

def test_my_app(http_testserver):
    http_testserver.add_response("/path", {"foo": "bar"})
    resp = requests.get(f"{http_testserver.url}/path")
    assert resp.json() == {"foo": "bar"}

Development

Install the project using poetry and enable pre-commit:

poetry install
pre-commit install

License

MIT

Keywords

Flywheel

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts