(self)
| 234 | self.assertIsInstance(r, markdown.util.Registry) |
| 235 | |
| 236 | def testRegisterWithoutPriority(self): |
| 237 | r = markdown.util.Registry() |
| 238 | with self.assertRaises(TypeError): |
| 239 | r.register(Item('a')) |
| 240 | |
| 241 | def testSortRegistry(self): |
| 242 | r = markdown.util.Registry() |