(t *testing.T)
| 270 | } |
| 271 | |
| 272 | func TestRestoreCommandSupportsStructuredOutput(t *testing.T) { |
| 273 | if !commandSupportsStructuredOutput(restoreCmd) { |
| 274 | t.Fatal("restore command should support structured output") |
| 275 | } |
| 276 | } |
| 277 | |
| 278 | func testRestoreCmd() (*cobra.Command, *bytes.Buffer) { |
| 279 | var stdout bytes.Buffer |
nothing calls this directly
no test coverage detected