module Github::Orgs::Teams

def delete_team(team_name, params={})


@github.orgs.delete_team 'team-name'
@github = Github.new :oauth_token => '...'
= Examples

In order to delete a team, the authenticated user must be an owner of the org that the team is associated with
Delete a team
def delete_team(team_name, params={})
  _validate_presence_of team_name
  _normalize_params_keys(params)
  delete("/teams/#{team_name}", params)
end