summaryrefslogtreecommitdiff
path: root/internal/container/plugins_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/container/plugins_test.go')
-rw-r--r--internal/container/plugins_test.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/internal/container/plugins_test.go b/internal/container/plugins_test.go
deleted file mode 100644
index b857f09a..00000000
--- a/internal/container/plugins_test.go
+++ /dev/null
@@ -1,18 +0,0 @@
-package container
-
-import (
- "reflect"
- "testing"
-)
-
-func TestPlugins(t *testing.T) {
- for _, p := range Plugins() {
- if p == nil {
- t.Error("plugin cannot be nil")
- }
-
- if pk := reflect.TypeOf(p).Kind(); pk != reflect.Ptr && pk != reflect.Struct {
- t.Errorf("plugin %v must be a structure or pointer to the structure", p)
- }
- }
-}