Sweep tests for expected_subject -> expected_topic.

This is all in the webhooks tests, including some
docs for how to write those tests.
This commit is contained in:
Steve Howell
2018-11-09 19:33:58 +00:00
committed by Tim Abbott
parent 3133998af9
commit ced4d81856
54 changed files with 743 additions and 743 deletions

View File

@@ -7,17 +7,17 @@ class HomeAssistantHookTests(WebhookTestCase):
FIXTURE_DIR_NAME = 'homeassistant'
def test_simplereq(self) -> None:
expected_subject = "homeassistant"
expected_topic = "homeassistant"
expected_message = "The sun will be shining today!"
self.send_and_test_stream_message('simplereq', expected_subject, expected_message,
self.send_and_test_stream_message('simplereq', expected_topic, expected_message,
content_type="application/x-www-form-urlencoded")
def test_req_with_title(self) -> None:
expected_subject = "Weather forecast"
expected_topic = "Weather forecast"
expected_message = "It will be 30 degrees Celsius out there today!"
self.send_and_test_stream_message('reqwithtitle', expected_subject, expected_message,
self.send_and_test_stream_message('reqwithtitle', expected_topic, expected_message,
content_type="application/x-www-form-urlencoded")
def get_body(self, fixture_name: str) -> str: