Files
onepanel/model/workflow_template_test.go
2019-12-12 10:03:29 -08:00

11 lines
161 B
Go

package model
import "testing"
func TestWorkflowTemplateToBytes(t *testing.T) {
w := &WorkflowTemplate{
Manifest: "test",
}
t.Log(w.GetManifestBytes())
}