Skip to content

Commit 8a677f4

Browse files
committed
(#18) LocalPath: more tests for strange cases
1 parent ab4e016 commit 8a677f4

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

TruePath.Tests/LocalPathTests.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ public void AbsolutePathParent(string relativePath, string? expectedRelativePath
3232
[InlineData("b", ".")]
3333
[InlineData("../b", "..")]
3434
[InlineData("b/..", "b/../..")]
35+
[InlineData("...", ".../..")]
36+
[InlineData(".../...", "...")]
3537
public void RelativePathParent(string path, string? expected)
3638
{
3739
// Arrange

0 commit comments

Comments
 (0)