Esempio n. 1
0
def test_that_normalize_path_doesnt_expand_to_home_directory():
    assert normalize_path("test.txt") == "test.txt"
Esempio n. 2
0
def test_that_normlalize_path_expands_tilde():
    home_path = os.path.expanduser("~")

    assert normalize_path("~/foo") == os.path.join(home_path, "foo")
Esempio n. 3
0
def test_that_normlalize_path_expands_tilde():
    home_path = os.path.expanduser("~")

    assert normalize_path("~/foo") == os.path.join(home_path, "foo")
Esempio n. 4
0
def test_that_normalize_path_doesnt_expand_to_home_directory():
    assert normalize_path("test.txt") == "test.txt"