Ejemplo n.º 1
0
def test_local_to_global_outside_dir():
    c = URLConverter('myhost', 42, '/my/path')

    url = c.local_to_global('/other/path/xyz.txt')
    assert url == '/other/path/xyz.txt'
Ejemplo n.º 2
0
def test_local_to_global():
    c = URLConverter('myhost', 42, '/my/path')

    url = c.local_to_global('/my/path/xyz.txt')
    assert url == 'http://myhost:42/xyz.txt'