Add test for Clients.__str__

This commit is contained in:
Thor77 2017-09-14 22:37:32 +02:00
parent 6345c3f1f5
commit b9f798d04d

View file

@ -34,6 +34,8 @@ def test_client_repr(clients):
assert str(clients['2']) == '<2, None>'
assert str(clients['UID1']) == '<UID1, None>'
assert str(clients['UID2']) == '<UID2, None>'
assert str(clients) == \
"['<1, None>', '<2, None>', '<UID2, None>', '<UID1, None>']"
def test_client_nick(clients):