mirror of
https://github.com/Thor77/TeamspeakStats.git
synced 2025-04-04 12:44:40 -04:00
add identmap tests
This commit is contained in:
parent
a914b96b39
commit
7464007b8c
1 changed files with 19 additions and 0 deletions
19
tests/test_ident_map.py
Normal file
19
tests/test_ident_map.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
from tsstats import Clients, Client
|
||||
|
||||
ident_map = {
|
||||
1: 2,
|
||||
5: 2,
|
||||
'UID1': 'UID2',
|
||||
'UID5': 'UID2'
|
||||
}
|
||||
clients = Clients(ident_map)
|
||||
|
||||
|
||||
def test_get_id():
|
||||
assert clients[1].identifier == 2
|
||||
assert clients[5].identifier == 2
|
||||
|
||||
|
||||
def test_get_uid():
|
||||
assert clients['UID1'].identifier == 'UID2'
|
||||
assert clients['UID5'].identifier == 'UID2'
|
Loading…
Add table
Reference in a new issue