ollama_slixmpp_omemo_bot/tests/test_ollama_bot.py
Matt Freeman 3c4fe53600 batman
2024-06-29 18:49:26 -04:00

14 lines
358 B
Python

from getpass import getpass
import pytest
from src.ollama_slixmpp_omemo_bot import ollama_bot
class TestOllamaSlixmppOmemoBot:
def setup_method(self):
"""Assemble common resources to be acted upon"""
def test_authentication(self):
jid = input("JID: ")
pw = getpass()
assert ollama_bot.OllamaBot(jid, pw).jid == jid