no cover for unreachable and abstract

pull/1742/head
sebres 2017-03-29 18:33:33 +02:00
parent ca18270beb
commit daa13eb5dd
1 changed files with 5 additions and 5 deletions

View File

@ -203,17 +203,17 @@ class ActionBase(object):
self._name = name self._name = name
self._logSys = getLogger("fail2ban.%s" % self.__class__.__name__) self._logSys = getLogger("fail2ban.%s" % self.__class__.__name__)
def start(self): def start(self): # pragma: no cover - abstract
"""Executed when the jail/action is started. """Executed when the jail/action is started.
""" """
pass pass
def stop(self): def stop(self): # pragma: no cover - abstract
"""Executed when the jail/action is stopped. """Executed when the jail/action is stopped.
""" """
pass pass
def ban(self, aInfo): def ban(self, aInfo): # pragma: no cover - abstract
"""Executed when a ban occurs. """Executed when a ban occurs.
Parameters Parameters
@ -224,7 +224,7 @@ class ActionBase(object):
""" """
pass pass
def unban(self, aInfo): def unban(self, aInfo): # pragma: no cover - abstract
"""Executed when a ban expires. """Executed when a ban expires.
Parameters Parameters
@ -399,7 +399,7 @@ class CommandAction(ActionBase):
# check the action depends on family (conditional): # check the action depends on family (conditional):
if self._startOnDemand: if self._startOnDemand:
return True return True
elif self.__started.get(family): elif self.__started.get(family): # pragma: no cover - normally unreachable
return True return True
return self._executeOperation('<actionstart>', 'starting', family=family) return self._executeOperation('<actionstart>', 'starting', family=family)