batman
This commit is contained in:
0
tests/__main__.py
Normal file
0
tests/__main__.py
Normal file
13
tests/test_ollama_bot.py
Normal file
13
tests/test_ollama_bot.py
Normal file
@@ -0,0 +1,13 @@
|
||||
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
|
||||
Reference in New Issue
Block a user