Beispiel #1
0
def test_URL__min_port_number():
    utils.URL('http://foohost:0')
    with pytest.raises(torf.URLError):
        utils.URL('http://foohost:-1')
Beispiel #2
0
def test_URL__max_port_number():
    utils.URL(f'http://foohost:{2**16-1}')
    with pytest.raises(torf.URLError):
        utils.URL(f'http://foohost:{2**16}')