mirror of
https://github.com/taigrr/mg.git
synced 2026-04-01 19:18:42 -07:00
17 lines
231 B
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
|
|
})
|
|
}
|
|
}
|