()
| 38 | } |
| 39 | |
| 40 | func DefaultCases() []CommandHelpCase { |
| 41 | return []CommandHelpCase{ |
| 42 | { |
| 43 | Name: "coder --help", |
| 44 | Cmd: []string{"--help"}, |
| 45 | }, |
| 46 | { |
| 47 | Name: "coder server --help", |
| 48 | Cmd: []string{"server", "--help"}, |
| 49 | }, |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | // TestCommandHelp will test the help output of the given commands |
| 54 | // using golden files. |
no outgoing calls