Skip to main content

A thin wrapper of HTTPretty for pytest

Project description

# pytest-httpretty - A thin wrapper of HTTPretty for pytest

pytest-httpretty provides `httpretty` marker and `stub_get()` shorthand function.

```python
import httpretty
import pytest
import requests
from pytest_httpretty import stub_get


@pytest.mark.httpretty
def test_mark_httpretty():
httpretty.register_uri(httpretty.GET, 'http://example.com/', body='Hello')

assert requests.get('http://example.com').text == 'Hello'


@pytest.mark.httpretty
def test_stub_get():
stub_get('http://example.com/', body='World!')

assert requests.get('http://example.com').text == 'World!'
```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytest-httpretty-0.2.0.tar.gz (2.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page