/**
  * test loading a list of tournaments created by logged in user
  * @group list
  */
 public function test_list_my()
 {
     $this->get_tournament_new();
     $list = $this->object->list_my();
     $this->assertListFormat($list, array('tourney_id', 'title', 'status', 'date_start', 'game_code', 'game', 'team_mode', 'max_teams'));
 }