Split out the loader from the VM

This commit is contained in:
Ian Gulliver
2021-11-18 19:56:58 -10:00
parent 941939da83
commit 4332632c77
4 changed files with 66 additions and 52 deletions

12
test/load_test.go Normal file
View File

@@ -0,0 +1,12 @@
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)
}
}