(self)
| 847 | plistlib.dumps(neg_uid, fmt=plistlib.FMT_BINARY) |
| 848 | |
| 849 | def test_modified_uid_huge(self): |
| 850 | huge_uid = UID(1) |
| 851 | huge_uid.data = 2 ** 64 # dodge the size check in the constructor |
| 852 | with self.assertRaises(OverflowError): |
| 853 | plistlib.dumps(huge_uid, fmt=plistlib.FMT_BINARY) |
| 854 | |
| 855 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 856 | def test_xml_plist_with_entity_decl(self): |
nothing calls this directly
no test coverage detected