mattermost/store/sqlstore/plugin_store_test.go
Joram Wilander 6176bcff69
PLT-8131 (part2) Add plugin key value store support (#7902)
* Add plugin key value store support

* Add localization strings

* Updates per feedback
2017-11-27 17:23:35 -05:00

14 lines
294 B
Go

// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package sqlstore
import (
"testing"
"github.com/mattermost/mattermost-server/store/storetest"
)
func TestPluginStore(t *testing.T) {
StoreTest(t, storetest.TestPluginStore)
}