fix plugin unit test

pull/3354/head
woodsaj 10 years ago
parent 1b5c40dd1f
commit 4f6a52503d
  1. 5
      pkg/plugins/plugins_test.go

@ -4,14 +4,15 @@ import (
"path/filepath"
"testing"
"github.com/grafana/grafana/pkg/setting"
. "github.com/smartystreets/goconvey/convey"
)
func TestPluginScans(t *testing.T) {
Convey("When scaning for plugins", t, func() {
path, _ := filepath.Abs("../../public/app/plugins")
err := scan(path)
setting.StaticRootPath = filepath.Abs("../../public/")
err := Init()
So(err, ShouldBeNil)
So(len(DataSources), ShouldBeGreaterThan, 1)

Loading…
Cancel
Save