Requesting a missing key raises KeyError.
(self)
| 147 | assert 'Topic :: Software Development :: Libraries' in classifiers |
| 148 | |
| 149 | def test_missing_key(self): |
| 150 | """ |
| 151 | Requesting a missing key raises KeyError. |
| 152 | """ |
| 153 | md = metadata('distinfo-pkg') |
| 154 | with self.assertRaises(KeyError): |
| 155 | md['does-not-exist'] |
| 156 | |
| 157 | def test_get_key(self): |
| 158 | """ |
nothing calls this directly
no test coverage detected