def test_update(self):
     h = Headers()
     h.update({
         'Content-Type': 'text/html',
         'X-Forwarded-For': ['ip1', 'ip2']
     })
     self.assertEqual(h.getlist('Content-Type'), ['text/html'])
     self.assertEqual(h.getlist('X-Forwarded-For'), ['ip1', 'ip2'])
Esempio n. 2
0
 def test_update(self):
     h = Headers()
     h.update({'Content-Type': 'text/html', 'X-Forwarded-For': ['ip1', 'ip2']})
     self.assertEqual(h.getlist('Content-Type'), ['text/html'])
     self.assertEqual(h.getlist('X-Forwarded-For'), ['ip1', 'ip2'])