| 23 | } |
| 24 | |
| 25 | type MockPrompter struct { |
| 26 | t *testing.T |
| 27 | ghPrompter.PrompterMock |
| 28 | authTokenStubs []authTokenStub |
| 29 | confirmDeletionStubs []confirmDeletionStub |
| 30 | inputHostnameStubs []inputHostnameStub |
| 31 | markdownEditorStubs []markdownEditorStub |
| 32 | multiSelectWithSearchStubs []multiSelectWithSearchStub |
| 33 | } |
| 34 | |
| 35 | type authTokenStub struct { |
| 36 | fn func() (string, error) |
nothing calls this directly
no outgoing calls
no test coverage detected