def test_everything(self): get_weather.lambda_handler(self.set_city_payload, None) get_weather.lambda_handler(self.set_state_payload, None) get_weather.lambda_handler(self.add_highlight_payload, None) get_weather.lambda_handler(self.add_highlight_payload_two, None) response = get_weather.lambda_handler(self.five_cast_payload, None) print(response['response']['outputSpeech']['text'])
def test_fivecast_help(self): response = get_weather.lambda_handler(self.help_payload, None) print(response['response']['outputSpeech']['text'])
def test_get_highlights(self): get_weather.lambda_handler(self.add_highlight_payload, None) get_weather.lambda_handler(self.add_highlight_payload_two, None) response = get_weather.lambda_handler(self.get_highlights_payload, None) print(response['response']['outputSpeech']['text'])
def test_remove_highlight(self): response = get_weather.lambda_handler(self.remove_highlight_payload, None) print(response['response']['outputSpeech']['text'])
def test_set_state(self): response = get_weather.lambda_handler(self.set_state_payload, None) print(response['response']['outputSpeech']['text'])
def test_get_city(self): response = get_weather.lambda_handler(self.get_city_payload, None) print(response['response']['outputSpeech']['text'])