Files
my-botty/test/smoke_test.py
T
2021-11-14 07:51:40 +01:00

15 lines
309 B
Python

from logger import Logger
from bot import Bot
class TestSmoke:
"""
Just import Bot and create an instance to ensure there is no major issue e.g. indent error
"""
def setup_method(self):
Logger.init()
Logger.remove_file_logger()
def test_smoke(self):
bot = Bot()