yao/widgets/widgets_test.go
2022-09-21 00:03:09 +08:00

13 lines
189 B
Go

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