mirror of
https://github.com/kubenetworks/kubevpn.git
synced 2025-12-24 11:51:13 +08:00
12 lines
159 B
Go
12 lines
159 B
Go
package inject
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestRender(t *testing.T) {
|
|
tmplStr := string(envoyConfig)
|
|
conf := GetEnvoyConfig(tmplStr, "test")
|
|
t.Log(conf)
|
|
}
|