hub: remove debugFunction API

testcase of list-api has some litaral reference. It doesn't matter but changed as well

fixes: #1833
This commit is contained in:
Yu Ming Zhu 2019-12-06 05:36:56 +00:00 committed by Tomas Kopecek
parent 1993a4f8cc
commit bce5afdf0c
4 changed files with 7 additions and 24 deletions

View file

@ -46,11 +46,11 @@ class TestListApi(utils.CliTestCase):
# Case 2.
session._listapi.return_value = [
{
'argdesc': '(name, *args, **kwargs)',
'doc': 'A debug function',
'argspec': [['name'], 'args', 'kwargs', None],
'args': ['name'],
'name': 'debugFunction'
'argdesc': '(tagInfo, **kwargs)',
'doc': 'Edit information for an existing tag.',
'argspec': [['tagInfo'], None, 'kwargs', None],
'args': ['tagInfo'],
'name': 'editTag2'
},
{
'doc': 'Add user to group',
@ -67,8 +67,8 @@ class TestListApi(utils.CliTestCase):
]
expected = "addGroupMember(group, user, strict=True)\n"
expected += " description: Add user to group\n"
expected += "debugFunction(name, *args, **kwargs)\n"
expected += " description: A debug function\n"
expected += "editTag2(tagInfo, **kwargs)\n"
expected += " description: Edit information for an existing tag.\n"
expected += "host.getID()\n"
anon_handle_list_api(options, session, [])
self.assert_console_message(stdout, expected)