mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 19:30:36 -06:00
32 lines
578 B
Go
32 lines
578 B
Go
package models
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestDashboardModel(t *testing.T) {
|
|
|
|
Convey("When generating slug", t, func() {
|
|
dashboard := NewDashboard("Grafana Play Home")
|
|
dashboard.UpdateSlug()
|
|
|
|
So(dashboard.Slug, ShouldEqual, "grafana-play-home")
|
|
})
|
|
|
|
Convey("Given a dashboard json", t, func() {
|
|
json := map[string]interface{}{
|
|
"title": "test dash",
|
|
}
|
|
|
|
Convey("With tags as string value", func() {
|
|
json["tags"] = ""
|
|
dash := NewDashboardFromJson(json)
|
|
|
|
So(len(dash.GetTags()), ShouldEqual, 0)
|
|
})
|
|
})
|
|
|
|
}
|