yao/load_test.go
2021-09-06 19:38:39 +08:00

12 lines
143 B
Go

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