mirror of
https://github.com/taigrr/mg.git
synced 2026-04-02 03:28:42 -07:00
add test stub and docstrings
This commit is contained in:
16
parse/myrepos_test.go
Normal file
16
parse/myrepos_test.go
Normal file
@@ -0,0 +1,16 @@
|
||||
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
|
||||
})
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user