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