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

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

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