About Anaconda Help Download Anaconda

brianjmcguirk / packages / pytest_httpretty 0.2.0

A thin wrapper of HTTPretty for pytest

Installers

  • win-64 v0.2.0

conda install

To install this package run one of the following:
conda install brianjmcguirk::pytest_httpretty

Description

pytest-httpretty - A thin wrapper of HTTPretty for pytest

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

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!'

© 2024 Anaconda, Inc. All Rights Reserved. (v4.0.5) Legal | Privacy Policy