mirror of https://github.com/zulip/zulip.git
11 lines
427 B
Python
11 lines
427 B
Python
|
|
from zerver.lib.test_classes import ZulipTestCase
|
|
|
|
class CompatibilityTest(ZulipTestCase):
|
|
def test_compatibility(self):
|
|
# type: () -> None
|
|
result = self.client_get("/compatibility", HTTP_USER_AGENT='ZulipMobile/5.0')
|
|
self.assert_json_success(result)
|
|
result = self.client_get("/compatibility", HTTP_USER_AGENT='ZulipInvalid/5.0')
|
|
self.assert_json_error(result, "Client is too old")
|