feature(tests): add unit tests

This commit is contained in:
2023-12-14 20:55:17 +00:00
parent d472dae69d
commit d213f1395d
12 changed files with 90 additions and 544 deletions

20
app/close.py Normal file
View File

@ -0,0 +1,20 @@
from webex_bot.models.command import Command
class ExitCommand(Command):
def __init__(self) -> None:
super().__init__(
command_keyword="exit",
help_message="Exit",
delete_previous_message=True,
)
self.sender: str = ""
def pre_execute(self, message, attachment_actions, activity) -> None:
return
def execute(self, message, attachment_actions, activity) -> None:
return
def post_execute(self, message, attachment_actions, activity) -> None:
return