(t *testing.T)
| 58 | } |
| 59 | |
| 60 | func TestPrintHelp(t *testing.T) { |
| 61 | comp := baker.Components{ |
| 62 | Inputs: input.All, |
| 63 | Filters: filter.All, |
| 64 | Outputs: output.All, |
| 65 | Uploads: upload.All, |
| 66 | } |
| 67 | err := baker.PrintHelp(io.Discard, "*", comp, baker.HelpFormatMarkdown) |
| 68 | if err != nil { |
| 69 | t.Fatalf("PrintHelp return err: %v, want nil", err) |
| 70 | } |
| 71 | } |
nothing calls this directly
no test coverage detected