(self)
| 89 | @unittest.skipIf(not diagnose.check_network_connection(), |
| 90 | "No internet connection") |
| 91 | def testWeather(self): |
| 92 | query = "what's the weather like tomorrow" |
| 93 | inputs = [] |
| 94 | outputs = self.runConversation(query, inputs, Weather) |
| 95 | self.assertTrue("can't see that far ahead" |
| 96 | in outputs[0] or "Tomorrow" in outputs[0]) |
nothing calls this directly
no test coverage detected