def test_is_absolute_url(): assert is_absolute_url("http://domain/path") assert is_absolute_url("https://domain/path") assert not is_absolute_url("://domain/path")