fix tests

This commit is contained in:
ziirish 2016-06-09 23:42:51 +02:00
parent 5b5f5960a1
commit d8fd5730dd
4 changed files with 29 additions and 15 deletions

View file

@ -188,6 +188,20 @@ class BUIparser(object):
"Sorry, the current Parser does not implement this method!"
) # pragma: no cover
@abstractmethod
def is_client_revoked(self, client=None):
""":func:`burpui.misc.parser.interface.BUIparser.is_client_revoked` is
used to check if a given client has it's certificate revoked or not.
:param client: The name of the client to check
:type client: str
:returns: True or False
"""
raise NotImplementedError(
"Sorry, the current Parser does not implement this method!"
) # pragma: no cover
@abstractmethod
def remove_client(self, client=None, delcert=False, revoke=False):
""":func:`burpui.misc.parser.interface.BUIparser.remove_client` is used