Esempio n. 1
0
def test_create_path():
    assert create_path(['c', 'b', 'a']) == '/a/b/c'
Esempio n. 2
0
def test_create_path():
    assert create_path(["c", "b", "a"]) == "/a/b/c"
Esempio n. 3
0
def test_create_path():
    assert create_path(['a', 'b', 'c']) == '/a/b/c'
    assert create_path([]) == '/'
Esempio n. 4
0
def test_create_path():
    assert create_path(["a", "b", "c"]) == "/a/b/c"
    assert create_path([]) == "/"
Esempio n. 5
0
def test_create_path():
    assert create_path(['a', 'b', 'c']) == '/a/b/c'
    assert create_path([]) == '/'
Esempio n. 6
0
def test_create_path():
    assert create_path(['c', 'b', 'a']) == '/a/b/c'