Files
subcoding/test/load_test.go

13 lines
171 B
Go
Raw Normal View History

2021-11-18 19:56:58 -10:00
package test
import "testing"
import "github.com/firestuff/subcoding/load"
func TestLoad(t *testing.T) {
_, err := load.Load(nil)
if err != nil {
t.Fatal(err)
}
}