Ejemplo n.º 1
0
 def test_import_class(self):
     cls_string = "tests.unit.fakes.FakeManager"
     ret = utils.import_class(cls_string)
     self.assertTrue(ret is fakes.FakeManager)
Ejemplo n.º 2
0
 def test_import_class(self):
     cls_string = "pyrax.utils.SelfDeletingTempfile"
     ret = utils.import_class(cls_string)
     self.assertTrue(ret is utils.SelfDeletingTempfile)
Ejemplo n.º 3
0
 def test_import_class(self):
     cls_string = "tests.unit.fakes.FakeManager"
     ret = utils.import_class(cls_string)
     self.assertTrue(ret is fakes.FakeManager)
Ejemplo n.º 4
0
 def test_import_class(self):
     cls_string = "pyrax.utils.SelfDeletingTempfile"
     ret = utils.import_class(cls_string)
     self.assertTrue(ret is utils.SelfDeletingTempfile)