def test_cannot_load_from_ftp():
    assert not HTTPBundleLoader.can_load_from(URLConfig('ftp://'))
def test_cannot_load_from_None():
    assert not HTTPBundleLoader.can_load_from(None)
def test_can_load_from_https():
    assert HTTPBundleLoader.can_load_from(URLConfig('https://'))