mirror of
https://github.com/onepanelio/onepanel.git
synced 2025-10-18 11:40:37 +08:00
11 lines
156 B
Go
11 lines
156 B
Go
package model
|
|
|
|
import "testing"
|
|
|
|
func TestWorkflowTemplateToBytes(t *testing.T) {
|
|
w := &WorkflowTemplate{
|
|
Manifest: "test",
|
|
}
|
|
t.Log(w.GetManifest())
|
|
}
|