mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 12:33:40 +00:00
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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user