(self)
| 745 | self.assertParses('none', False) |
| 746 | |
| 747 | def testPreserveNone(self): |
| 748 | self.assertIsNone(markdown.util.parseBoolValue('None', preserve_none=True)) |
| 749 | self.assertIsNone(markdown.util.parseBoolValue(None, preserve_none=True)) |
| 750 | |
| 751 | def testInvalidBooleansParsing(self): |
| 752 | self.assertRaises(ValueError, markdown.util.parseBoolValue, 'novalue') |
nothing calls this directly
no outgoing calls
no test coverage detected