yao/widget/widget_test.go
2023-02-03 11:35:48 +08:00

26 lines
425 B
Go

package widget
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/yaoapp/gou/widget"
"github.com/yaoapp/yao/config"
"github.com/yaoapp/yao/test"
)
func TestLoad(t *testing.T) {
test.Prepare(t, config.Conf)
defer test.Clean()
Load(config.Conf)
check(t)
}
func check(t *testing.T) {
ids := map[string]bool{}
for id := range widget.Widgets {
ids[id] = true
}
assert.True(t, ids["dyform"])
}