()
| 40 | |
| 41 | @ask.intent("YesIntent") |
| 42 | def share_headlines(): |
| 43 | headlines = get_headlines() |
| 44 | headline_msg = "The current world news headlines are {}".format(headlines) |
| 45 | return statement(headline_msg) |
| 46 | |
| 47 | |
| 48 | @ask.intent("NooIntent") |
nothing calls this directly
no test coverage detected