aboutsummaryrefslogblamecommitdiffstats
path: root/_pytest/test_processsubteamcreated.py
blob: 6c2bb3547d03688f0c7e61d209f740e1010ca8bd (plain) (tree)
1
2
3
4
5
6
7
8

                                                       

           
 

                                                            
 




                                                                          
 
                                  
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)
    realish_eventrouter.handle_next()

    assert len(team.subteams) == 2