(self)
| 804 | assert h.setlistdefault("d", ["4", "5"]) == ["4", "5"] |
| 805 | |
| 806 | def test_to_wsgi_list(self): |
| 807 | h = self.storage_class() |
| 808 | h.set("Key", "Value") |
| 809 | for key, value in h.to_wsgi_list(): |
| 810 | assert key == "Key" |
| 811 | assert value == "Value" |
| 812 | |
| 813 | def test_equality(self): |
| 814 | # test equality, given keys are case insensitive |
nothing calls this directly
no test coverage detected