(self)
| 110 | self.assertEqual(d.getlist("newkey"), ["Doe"]) |
| 111 | |
| 112 | def test_appendlist(self): |
| 113 | d = MultiValueDict() |
| 114 | d.appendlist("name", "Adrian") |
| 115 | d.appendlist("name", "Simon") |
| 116 | self.assertEqual(d.getlist("name"), ["Adrian", "Simon"]) |
| 117 | |
| 118 | def test_copy(self): |
| 119 | for copy_func in [copy.copy, lambda d: d.copy()]: |
nothing calls this directly
no test coverage detected