yao/widgets/widgets_test.go
2023-03-25 22:11:19 +08:00

16 lines
269 B
Go

package widgets
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/yaoapp/yao/config"
"github.com/yaoapp/yao/test"
)
func TestLoad(t *testing.T) {
test.Prepare(t, config.Conf)
defer test.Clean()
err := Load(config.Conf)
assert.Nil(t, err)
}