1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
package pkgtools
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestIsParentDir(t *testing.T) {
tests := []struct {
Parent string
FileName string
Exp bool
}{
{
Parent: "install",
FileName: "install/doinst.sh",
Exp: true,
},
{
Parent: "other/install",
FileName: "install/doinst.sh",
Exp: false,
},
{
Parent: "install",
FileName: "doinst.sh",
Exp: false,
},
}
for _, test := range tests {
exp, err := IsParentDir(test.Parent, test.FileName)
require.NoError(t, err)
require.Equal(t, test.Exp, exp)
}
}
|