示例#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)
示例#2
0
 def test_import_class(self):
     cls_string = "pyrax.utils.SelfDeletingTempfile"
     ret = utils.import_class(cls_string)
     self.assertTrue(ret is utils.SelfDeletingTempfile)
示例#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)
示例#4
0
 def test_import_class(self):
     cls_string = "pyrax.utils.SelfDeletingTempfile"
     ret = utils.import_class(cls_string)
     self.assertTrue(ret is utils.SelfDeletingTempfile)