def test_URL__min_port_number(): utils.URL('http://foohost:0') with pytest.raises(torf.URLError): utils.URL('http://foohost:-1')
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}')