()
| 515 | } |
| 516 | |
| 517 | func ExampleInstance_PrintVersionList_json() { |
| 518 | instance := Instance{ |
| 519 | DeprecatedVersions: []Version{testVersionDeployment}, |
| 520 | } |
| 521 | _ = instance.PrintVersionList("json") |
| 522 | |
| 523 | // Output: |
| 524 | // {"deprecated-versions":[{"version":"extensions/v1beta1","kind":"Deployment","deprecated-in":"v1.9.0","removed-in":"v1.16.0","replacement-api":"apps/v1","replacement-available-in":"v1.10.0","component":"k8s"}]} |
| 525 | } |
| 526 | |
| 527 | func ExampleInstance_PrintVersionList_yaml() { |
| 528 | instance := Instance{ |
nothing calls this directly
no test coverage detected
searching dependent graphs…