Skip to content

papaeye/pytest-httpretty

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A thin wrapper of HTTPretty for pytest

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages