(t *testing.T)
| 71 | } |
| 72 | |
| 73 | func TestVersionCommandSupportsStructuredOutput(t *testing.T) { |
| 74 | if !commandSupportsStructuredOutput(NewVersionCommand("1.2.3")) { |
| 75 | t.Fatal("version command should support structured output") |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | func stubDropboxVersion(t *testing.T, sdkVersion, specVersion string) { |
| 80 | t.Helper() |
nothing calls this directly
no test coverage detected