...

Source file src/edge-infra.dev/test/fixtures/fixtures_example_test.go

Documentation: edge-infra.dev/test/fixtures

     1  package fixtures
     2  
     3  import "fmt"
     4  
     5  func ExampleOnly() {
     6  	crds, _ := LoadCRDs(Only("edge"))
     7  	for _, crd := range crds {
     8  		fmt.Println(crd.GetName())
     9  	}
    10  }
    11  

View as plain text