(self)
| 713 | assert headers == self.storage_class([("X-Bar", "1")]) |
| 714 | |
| 715 | def test_copying(self): |
| 716 | a = self.storage_class([("foo", "bar")]) |
| 717 | b = a.copy() |
| 718 | a.add("foo", "baz") |
| 719 | assert a.getlist("foo") == ["bar", "baz"] |
| 720 | assert b.getlist("foo") == ["bar"] |
| 721 | |
| 722 | def test_popping(self): |
| 723 | headers = self.storage_class([("a", 1)]) |