| 705 | } |
| 706 | |
| 707 | type MockSurveyPrompter struct { |
| 708 | AskFunc func(qs []*survey.Question, response interface{}) error |
| 709 | } |
| 710 | |
| 711 | func (m *MockSurveyPrompter) Ask(qs []*survey.Question, response interface{}) error { |
| 712 | return m.AskFunc(qs, response) |
nothing calls this directly
no outgoing calls
no test coverage detected