We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab4e016 commit 8a677f4Copy full SHA for 8a677f4
1 file changed
TruePath.Tests/LocalPathTests.cs
@@ -32,6 +32,8 @@ public void AbsolutePathParent(string relativePath, string? expectedRelativePath
32
[InlineData("b", ".")]
33
[InlineData("../b", "..")]
34
[InlineData("b/..", "b/../..")]
35
+ [InlineData("...", ".../..")]
36
+ [InlineData(".../...", "...")]
37
public void RelativePathParent(string path, string? expected)
38
{
39
// Arrange
0 commit comments