Files
mattermost/store/sqlstore/webhook_store_test.go

15 lines
299 B
Go
Raw Normal View History

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
2015-09-21 14:22:23 -04:00
// See License.txt for license information.
package sqlstore
2015-09-21 14:22:23 -04:00
import (
"testing"
"github.com/mattermost/mattermost-server/v5/store/storetest"
2015-09-21 14:22:23 -04:00
)
func TestWebhookStore(t *testing.T) {
StoreTest(t, storetest.TestWebhookStore)
}