def test_parse_path(): assert parse_path(u'/a/b/c') == ['c', 'b', 'a']
def test_parse_path_slash(): assert parse_path(u'/') == []
def test_parse_path_slash(): assert parse_path(u"/") == []
def test_parse_path_end_slash(): assert parse_path("a/b/c/") == ["c", "b", "a"]
def test_parse_path_dots(): assert parse_path(u'/a/b/../c') == parse_path(u'/a/c')
def test_parse_path_dots_start(): assert parse_path(u'/../a/b') == parse_path(u'/a/b')
def test_parse_path_no_slash(): assert parse_path("a/b/c") == ["a", "b", "c"]
def test_parse_path_end_slash(): assert parse_path('a/b/c/') == ['a', 'b', 'c']
def test_parse_path(): assert parse_path("/a/b/c") == ["a", "b", "c"]
def test_parse_path_slash(): assert parse_path("/") == []
def test_parse_path(): assert parse_path(u'/a/b/c') == [u'a', u'b', u'c']
def test_parse_path_end_slash(): assert parse_path('a/b/c/') == ['c', 'b', 'a']
def test_parse_path_end_slash(): assert parse_path("a/b/c/") == ["a", "b", "c"]
def test_parse_path_multi_slash(): assert parse_path("/a/b/c") == parse_path("/a//b/c") assert parse_path("/a/b/c") == parse_path("/a///b/c")
def test_parse_path_multi_slash(): assert parse_path(u'/a/b/c') == parse_path(u'/a//b/c') assert parse_path(u'/a/b/c') == parse_path(u'/a///b/c')
def test_parse_path_dots(): assert parse_path("/a/b/../c") == parse_path("/a/c")
def test_parse_path_single_dots(): assert parse_path(u'/a/./b') == parse_path(u'/a/b') assert parse_path(u'./a/b') == parse_path(u'/a/b')
def test_parse_path_single_dots(): assert parse_path("/a/./b") == parse_path("/a/b") assert parse_path("./a/b") == parse_path("/a/b")
def test_parse_path(): assert parse_path(u"/a/b/c") == ["c", "b", "a"]
def test_parse_path_dots_start(): assert parse_path("/../a/b") == parse_path("/a/b")
def test_parse_path_no_slash(): assert parse_path("a/b/c") == ["c", "b", "a"]
def test_parse_path_multi_slash(): assert parse_path(u"/a/b/c") == parse_path(u"/a//b/c") assert parse_path(u"/a/b/c") == parse_path(u"/a///b/c")
def test_parse_path_empty(): assert parse_path(u'') == []
def test_parse_path_no_slash(): assert parse_path('a/b/c') == ['c', 'b', 'a']
def test_parse_path_no_slash(): assert parse_path('a/b/c') == ['a', 'b', 'c']