Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

httpretty pytest fixture

@pytest.yield_fixture
def http_pretty_mock():
    httpretty.enable()
    yield
    httpretty.disable()


def test_write_file_from_datasource_failing(http_pretty_mock, tmpdir):
    tmpdir = str(tmpdir)
    # mock the connection
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #httpretty #pytest #fixture
ADD COMMENT
Topic
Name
1+6 =