add test stub and docstrings

This commit is contained in:
2023-05-10 22:51:16 -07:00
parent 28f0329d4a
commit 93a21b8c61
3 changed files with 31 additions and 0 deletions

16
parse/myrepos_test.go Normal file
View 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
})
}
}