Files
grafana/pkg/services/publicdashboards/models/models_test.go
2023-06-14 17:35:01 -03:00

12 lines
198 B
Go

package models
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestPublicDashboardTableName(t *testing.T) {
assert.Equal(t, "dashboard_public", PublicDashboard{}.TableName())
}