...

Source file src/edge-infra.dev/pkg/edge/rollouts/examples/examples_test.go

Documentation: edge-infra.dev/pkg/edge/rollouts/examples

     1  package examples
     2  
     3  import (
     4  	"fmt"
     5  	"testing"
     6  )
     7  
     8  func TestCreateSamplePlan(_ *testing.T) {
     9  	plan := CreateSamplePlan()
    10  	fmt.Println("created plan")
    11  	fmt.Printf("%+v\n", plan)
    12  }
    13  

View as plain text