summaryrefslogtreecommitdiffstats
path: root/plugin/bundle_info_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/bundle_info_test.go')
-rw-r--r--plugin/bundle_info_test.go30
1 files changed, 0 insertions, 30 deletions
diff --git a/plugin/bundle_info_test.go b/plugin/bundle_info_test.go
deleted file mode 100644
index 94a0c624f..000000000
--- a/plugin/bundle_info_test.go
+++ /dev/null
@@ -1,30 +0,0 @@
-package plugin
-
-import (
- "io/ioutil"
- "os"
- "path/filepath"
- "testing"
-
- "github.com/stretchr/testify/assert"
- "github.com/stretchr/testify/require"
-)
-
-func TestBundleInfoForPath(t *testing.T) {
- dir, err := ioutil.TempDir("", "mm-plugin-test")
- require.NoError(t, err)
- defer os.RemoveAll(dir)
-
- path := filepath.Join(dir, "plugin.json")
- f, err := os.Create(path)
- require.NoError(t, err)
- _, err = f.WriteString(`{"id": "foo"}`)
- f.Close()
- require.NoError(t, err)
-
- info := BundleInfoForPath(dir)
- assert.Equal(t, info.Path, dir)
- assert.NotNil(t, info.Manifest)
- assert.Equal(t, info.ManifestPath, path)
- assert.Nil(t, info.ManifestError)
-}