(self)
| 83 | class TestBaseHeaderFeatures(TestHeaderBase): |
| 84 | |
| 85 | def test_str(self): |
| 86 | h = self.make_header('subject', 'this is a test') |
| 87 | self.assertIsInstance(h, str) |
| 88 | self.assertEqual(h, 'this is a test') |
| 89 | self.assertEqual(str(h), 'this is a test') |
| 90 | |
| 91 | def test_substr(self): |
| 92 | h = self.make_header('subject', 'this is a test') |
nothing calls this directly
no test coverage detected