aboutsummaryrefslogtreecommitdiff
path: root/filesystem_test.go
diff options
context:
space:
mode:
authorSlack Coder <slackcoder@server.ky>2023-10-18 17:27:00 -0500
committerSlack Coder <slackcoder@server.ky>2023-10-18 17:27:00 -0500
commit2be3a82f3a801a84c98a4de9c818ce8b0497135b (patch)
tree9fb89a6b10fddbb1560d895215b445813d3ea28c /filesystem_test.go
parent2fda2161877e61e16b7f208ba1f92f650776cbe2 (diff)
downloadpkgtools-go-todo.tar.xz
move todos to project roottodo
Diffstat (limited to 'filesystem_test.go')
-rw-r--r--filesystem_test.go36
1 files changed, 0 insertions, 36 deletions
diff --git a/filesystem_test.go b/filesystem_test.go
deleted file mode 100644
index 6559488..0000000
--- a/filesystem_test.go
+++ /dev/null
@@ -1,36 +0,0 @@
-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)
- }
-}