Files
mg/parse/myrepos_test.go

17 lines
231 B
Go

package parse
import "testing"
func TestLoadMRConfig(t *testing.T) {
// test cases for LoadMRConfig
tests := []struct {
id string
}{}
for _, test := range tests {
t.Run(test.id, func(t *testing.T) {
// TODO
})
}
}