mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			408 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			408 B
		
	
	
	
		
			Python
		
	
	
	
	
	
 | 
						|
from zerver.lib.test_classes import ZulipTestCase
 | 
						|
 | 
						|
class CompatibilityTest(ZulipTestCase):
 | 
						|
    def test_compatibility(self) -> 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")
 |