A lot of work on backend plugin model for frontend components, right now for data sources, will enable dropin plugins for data sources and panels, #1472

This commit is contained in:
Torkel Ödegaard
2015-02-27 22:29:00 +01:00
parent 5bd5713a52
commit c198242292
42 changed files with 159 additions and 249 deletions

View File

@ -11,9 +11,9 @@ func TestPluginScans(t *testing.T) {
Convey("When scaning for plugins", t, func() {
path, _ := filepath.Abs("../../src/app/plugins")
err := Scan(path)
err := scan(path)
So(err, ShouldBeNil)
So(len(List), ShouldEqual, 1)
So(len(DataSources), ShouldEqual, 1)
})
}