test: add more test case for CleanPath
Signed-off-by: Ace-Tang <aceapril@126.com>
This commit is contained in:
parent
70ca035aa6
commit
5963cf2afc
|
@ -129,4 +129,14 @@ func TestCleanPath(t *testing.T) {
|
|||
if path != "/var" {
|
||||
t.Errorf("expected to receive '/var' and received %s", path)
|
||||
}
|
||||
|
||||
path = CleanPath("/foo/bar/")
|
||||
if path != "/foo/bar" {
|
||||
t.Errorf("expected to receive '/foo/bar' and received %s", path)
|
||||
}
|
||||
|
||||
path = CleanPath("/foo/bar/../")
|
||||
if path != "/foo" {
|
||||
t.Errorf("expected to receive '/foo' and received %s", path)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue