()
| 553 | } |
| 554 | |
| 555 | func ExampleInstance_PrintVersionList_wide() { |
| 556 | instance := Instance{ |
| 557 | DeprecatedVersions: []Version{testVersionDeployment}, |
| 558 | } |
| 559 | _ = instance.PrintVersionList("wide") |
| 560 | |
| 561 | // Output: |
| 562 | // KIND-------- NAME---------------- DEPRECATED IN-- REMOVED IN-- REPLACEMENT-- REPL AVAIL IN-- COMPONENT-- |
| 563 | // Deployment-- extensions/v1beta1-- v1.9.0--------- v1.16.0----- apps/v1------ v1.10.0-------- k8s-------- |
| 564 | } |
| 565 | |
| 566 | func ExampleInstance_PrintVersionList_badformat() { |
| 567 | instance := Instance{ |
nothing calls this directly
no test coverage detected
searching dependent graphs…