change: relocate files

This commit is contained in:
debugtalk
2021-11-18 17:08:41 +08:00
parent 129116297a
commit ee2cd6d6de
7 changed files with 6 additions and 6 deletions

17
docs/cmd/doc_test.go Normal file
View File

@@ -0,0 +1,17 @@
package cmd
import (
"testing"
"github.com/spf13/cobra/doc"
"github.com/httprunner/hrp/hrp/cmd"
)
// run this test to generate markdown docs
func TestGenMarkdownTree(t *testing.T) {
err := doc.GenMarkdownTree(cmd.RootCmd, "./")
if err != nil {
t.Fatal(err)
}
}