Beispiel #1
0
 def test_forward_slash(self):
     assert list(tokenize_path("foo/bar")) == ["bar", "foo"]
 def test_relative_paths(self):
     assert list(tokenize_path('./')) == ['.']
     assert list(tokenize_path('./../')) == ['..', '.']
     assert list(tokenize_path('./foo/bar')) == ['bar', 'foo', '.']
     assert list(tokenize_path('.\\foo\\bar')) == ['bar', 'foo', '.']
 def test_path_with_spaces(self):
     assert list(tokenize_path('\\foo bar\\bar')) == ['bar', 'foo bar']
Beispiel #4
0
def test_tokenize_path():
    assert list(tokenize_path('foo/bar')) == ['bar', 'foo']
    assert list(tokenize_path('foo\\bar')) == ['bar', 'foo']
    assert list(tokenize_path('foo.bar')) == ['foo.bar']
    assert list(tokenize_path('/foo/bar')) == ['bar', 'foo']
 def test_additional_slash_in_front(self):
     assert list(tokenize_path('/foo/bar')) == ['bar', 'foo']
     assert list(tokenize_path('\\foo\\bar')) == ['bar', 'foo']
Beispiel #6
0
 def test_additional_slash_in_front(self):
     assert list(tokenize_path("/foo/bar")) == ["bar", "foo"]
     assert list(tokenize_path("\\foo\\bar")) == ["bar", "foo"]
Beispiel #7
0
 def test_path_with_spaces(self):
     assert list(tokenize_path("\\foo bar\\bar")) == ["bar", "foo bar"]
Beispiel #8
0
 def test_path_with_spaces(self):
     assert list(tokenize_path('\\foo bar\\bar')) == ['bar', 'foo bar']
Beispiel #9
0
 def test_no_path(self):
     assert list(tokenize_path('/')) == []
Beispiel #10
0
 def test_additional_slash_in_front(self):
     assert list(tokenize_path('/foo/bar')) == ['bar', 'foo']
     assert list(tokenize_path('\\foo\\bar')) == ['bar', 'foo']
Beispiel #11
0
 def test_relative_paths(self):
     assert list(tokenize_path('./')) == ['.']
     assert list(tokenize_path('./../')) == ['..', '.']
     assert list(tokenize_path('./foo/bar')) == ['bar', 'foo', '.']
     assert list(tokenize_path('.\\foo\\bar')) == ['bar', 'foo', '.']
Beispiel #12
0
 def test_dot_does_not_separate(self):
     assert list(tokenize_path('foo.bar')) == ['foo.bar']
Beispiel #13
0
 def test_back_slash(self):
     assert list(tokenize_path('foo\\bar')) == ['bar', 'foo']
Beispiel #14
0
 def test_forward_slash(self):
     assert list(tokenize_path('foo/bar')) == ['bar', 'foo']
Beispiel #15
0
 def test_back_slash(self):
     assert list(tokenize_path("foo\\bar")) == ["bar", "foo"]
Beispiel #16
0
 def test_forward_slash(self):
     assert list(tokenize_path('foo/bar')) == ['bar', 'foo']
Beispiel #17
0
 def test_dot_does_not_separate(self):
     assert list(tokenize_path("foo.bar")) == ["foo.bar"]
Beispiel #18
0
 def test_back_slash(self):
     assert list(tokenize_path('foo\\bar')) == ['bar', 'foo']
Beispiel #19
0
 def test_relative_paths(self):
     assert list(tokenize_path("./")) == ["."]
     assert list(tokenize_path("./../")) == ["..", "."]
     assert list(tokenize_path("./foo/bar")) == ["bar", "foo", "."]
     assert list(tokenize_path(".\\foo\\bar")) == ["bar", "foo", "."]
Beispiel #20
0
 def test_dot_does_not_separate(self):
     assert list(tokenize_path('foo.bar')) == ['foo.bar']
Beispiel #21
0
 def test_no_path(self):
     assert list(tokenize_path("/")) == []
Beispiel #22
0
def test_tokenize_path():
    assert list(tokenize_path('foo/bar')) == ['bar', 'foo']
    assert list(tokenize_path('foo\\bar')) == ['bar', 'foo']
    assert list(tokenize_path('foo.bar')) == ['foo.bar']