mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			528 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			528 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.http import HttpResponse
 | |
| import unittest
 | |
| 
 | |
| class HttpResponseTests(unittest.TestCase):
 | |
| 
 | |
|     def test_status_code(self):
 | |
|         resp = HttpResponse(status=418)
 | |
|         self.assertEqual(resp.status_code, 418)
 | |
|         self.assertEqual(resp.reason_phrase, "I'M A TEAPOT")
 | |
| 
 | |
|     def test_reason_phrase(self):
 | |
|         reason = "I'm an anarchist coffee pot on crack."
 | |
|         resp = HttpResponse(status=814, reason=reason)
 | |
|         self.assertEqual(resp.status_code, 814)
 | |
|         self.assertEqual(resp.reason_phrase, reason)
 |