(self)
| 749 | self.assertIsNone(markdown.util.parseBoolValue(None, preserve_none=True)) |
| 750 | |
| 751 | def testInvalidBooleansParsing(self): |
| 752 | self.assertRaises(ValueError, markdown.util.parseBoolValue, 'novalue') |
| 753 | |
| 754 | |
| 755 | class TestCliOptionParsing(unittest.TestCase): |
nothing calls this directly
no outgoing calls
no test coverage detected