13 lines
171 B
Go
13 lines
171 B
Go
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)
|
|
}
|
|
}
|