()
| 168 | } |
| 169 | |
| 170 | func (m *Messenger) PromptUntilYorN() bool { |
| 171 | res, err := m.PromptUntil([]string{"y", "yes", "n", "no"}) |
| 172 | if err != nil { |
| 173 | m.Die("Error processing response: %s", err) |
| 174 | } |
| 175 | |
| 176 | if res == "y" || res == "yes" { |
| 177 | return true |
| 178 | } |
| 179 | |
| 180 | return false |
| 181 | } |
no test coverage detected