aboutsummaryrefslogtreecommitdiffstats
path: root/_pytest/test_processsubteamcreated.py
blob: 299ac6f72af1a97cc78915c3be8dfb20dd85702f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from __future__ import print_function, unicode_literals

import json


def test_process_subteam_created(realish_eventrouter, team):
    assert len(team.subteams) == 1

    datafile = '_pytest/data/websocket/1483975206.59-subteam_created.json'
    data = json.loads(open(datafile, 'r').read())
    team.ws.add(data)
    realish_eventrouter.receive_ws_callback(team.team_hash, None)
    realish_eventrouter.handle_next()

    assert len(team.subteams) == 2