def _getAPI(self): testPath = os.path.realpath(__file__) dirName = os.path.split(testPath)[0] apiPath = os.path.join( dirName, '..', 'vdsm', 'rpc', 'vdsmapi-schema.json') return vdsmapi.get_api(apiPath)
def _getAPI(self): testPath = os.path.realpath(__file__) dirName = os.path.split(testPath)[0] apiPath = os.path.join(dirName, '..', 'vdsm', 'rpc', 'vdsmapi-schema.json') return vdsmapi.get_api(apiPath)
def testSchemaParse(self): self.assertTrue(isinstance(vdsmapi.get_api(), dict))