This commit is contained in:
HiteshRepo 2024-01-30 17:03:13 +05:30
parent 1a1c888fb4
commit c18c2eb6d6

View File

@ -721,3 +721,23 @@ func (suite *PathUnitSuite) TestArePathsEquivalent() {
}) })
} }
} }
func (suite *PathUnitSuite) Test_Stuff() {
t := suite.T()
tests := []struct {
name string
path1 string
path2 string
}{
{
name: "same linux normal path",
path1: "/path/to/dir",
path2: "/path/to/dir",
},
}
for _, test := range tests {
assert.Equal(t, test.path1, test.path2)
}
}