示例#1
0
def test_small_request_headers_add_through_lower_api():
    request = Request("GET", b"https://hello-world", None)

    request.add_header(b"Hello", b"World")

    raw_bytes = write_small_request(request)

    assert b"Hello: World\r\n" in raw_bytes
示例#2
0
def test_small_request_headers_add_through_lower_api():
    request = Request('GET', b'https://hello-world', None)

    request.add_header(b'Hello', b'World')

    raw_bytes = write_small_request(request)

    assert b'Hello: World\r\n' in raw_bytes