htttea

Web server for testing.


Keywords
test
License
MIT
Install
pip install htttea==0.1.0

Documentation

Htttea

https://travis-ci.org/narusemotoki/htttea.svg?branch=master

I’m not a tea pot. Provide a web server for testing.

CHANGELOG

Usage

response_body = b"Hello World"
with htttea.Htttea() as t3:
    t3.response = htttea.Response(body=response_body)
    response = requests.post(t3.url, data=data)

    assert t3.request.data == data
    assert response.text == response_body.decode()

Htttea makes a real web server when it is called with with statement. You can get a web server URL from url property.