def test_get_registered_class_returns_registered_class(self):
     # for backwards compatibility. You can (and should) just access
     # your registry like a normal dictionary.
     lc = Registry()
     TestClass = self.get_test_class("ABC")
     lc.register(TestClass)
     self.assertEqual(lc.get_registered_class("ABC"), TestClass)