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

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

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