mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
12 lines
198 B
Go
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())
|
|
}
|