| 710 | } |
| 711 | |
| 712 | type MockSurveyPrompter struct { |
| 713 | AskFunc func(qs []*survey.Question, response interface{}) error |
| 714 | } |
| 715 | |
| 716 | func (m *MockSurveyPrompter) Ask(qs []*survey.Question, response interface{}) error { |
| 717 | return m.AskFunc(qs, response) |
nothing calls this directly
no outgoing calls
no test coverage detected