mirror of
https://github.com/matrix-org/pantalaimon.git
synced 2024-10-01 03:35:38 -04:00
17 lines
400 B
Python
17 lines
400 B
Python
import pytest
|
|
from janus import Queue
|
|
|
|
from conftest import faker
|
|
from pantalaimon.ui import Control, Devices, IdCounter
|
|
|
|
|
|
class TestClass(object):
|
|
def test_server_account_storing(self):
|
|
users = [(faker.mx_id(), faker.device_id())]
|
|
|
|
queue = Queue()
|
|
counter = IdCounter()
|
|
control = Control(queue.sync_q, users, counter)
|
|
|
|
assert control.ListUsers() == users
|