2025-04-01 10:38:02 +09: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())
}