(self, hdr)
| 209 | 'foo=bar; Version="1"', |
| 210 | ]) |
| 211 | def test_parse_ns_headers_version(self, hdr): |
| 212 | # quotes should be stripped |
| 213 | expected = [[('foo', 'bar'), ('version', '1')]] |
| 214 | self.assertEqual(parse_ns_headers([hdr]), expected) |
| 215 | |
| 216 | def test_parse_ns_headers_special_names(self): |
| 217 | # names such as 'expires' are not special in first name=value pair |
nothing calls this directly
no test coverage detected