From ebb97fb7367fb983cffc1935a8fb57e4b80f5249 Mon Sep 17 00:00:00 2001 From: Dave Henderson Date: Thu, 25 Jan 2024 20:11:31 -0500 Subject: Move funcs package to internal (#1977) Signed-off-by: Dave Henderson --- funcs/filepath_test.go | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 funcs/filepath_test.go (limited to 'funcs/filepath_test.go') diff --git a/funcs/filepath_test.go b/funcs/filepath_test.go deleted file mode 100644 index 0c4bbe80..00000000 --- a/funcs/filepath_test.go +++ /dev/null @@ -1,26 +0,0 @@ -package funcs - -import ( - "context" - "strconv" - "testing" - - "github.com/stretchr/testify/assert" -) - -func TestCreateFilePathFuncs(t *testing.T) { - t.Parallel() - - for i := 0; i < 10; i++ { - // Run this a bunch to catch race conditions - t.Run(strconv.Itoa(i), func(t *testing.T) { - t.Parallel() - - ctx := context.Background() - fmap := CreateFilePathFuncs(ctx) - actual := fmap["filepath"].(func() interface{}) - - assert.Equal(t, ctx, actual().(*FilePathFuncs).ctx) - }) - } -} -- cgit v1.2.3