diff options
author | 2016-12-26 17:34:05 +0800 | |
---|---|---|
committer | 2017-01-09 10:18:02 +0800 | |
commit | 3064b88ccd222c18352ac8be042d98904ca3828c (patch) | |
tree | 603df298e5f03b449ad3adcd1bf79e1cc0e7a753 /utils/test/testapi/opnfv_testapi/resources/handlers.py | |
parent | 2210de45982fa7c33c1b96b691878b678ca2ecab (diff) |
add scenario models and framework
JIRA: RELENG-163
Change-Id: I36a51022c087621d9539dc40f7d9acee4db95dfb
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'utils/test/testapi/opnfv_testapi/resources/handlers.py')
-rw-r--r-- | utils/test/testapi/opnfv_testapi/resources/handlers.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/test/testapi/opnfv_testapi/resources/handlers.py b/utils/test/testapi/opnfv_testapi/resources/handlers.py index f1ad15e97..9fc5d6be1 100644 --- a/utils/test/testapi/opnfv_testapi/resources/handlers.py +++ b/utils/test/testapi/opnfv_testapi/resources/handlers.py @@ -43,6 +43,7 @@ class GenericApiHandler(RequestHandler): self.db_pods = 'pods' self.db_testcases = 'testcases' self.db_results = 'results' + self.db_scenarios = 'scenarios' def prepare(self): if self.request.method != "GET" and self.request.method != "DELETE": |