You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
389 B
Go
22 lines
389 B
Go
package generator
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
|
|
)
|
|
|
|
func TestProtoTmpl(t *testing.T) {
|
|
_ = Clean()
|
|
// exists dir
|
|
err := ProtoTmpl(pathx.MustTempDir())
|
|
assert.Nil(t, err)
|
|
|
|
// not exist dir
|
|
dir := filepath.Join(pathx.MustTempDir(), "test")
|
|
err = ProtoTmpl(dir)
|
|
assert.Nil(t, err)
|
|
}
|