def test_bad_division(): pyball = PyBall() with pytest.raises(BadRequestError): pyball.get_division_by_id("InvalidID")
def test_stats_group(): pyball = PyBall() return pyball.get_stats_groups()
def test_league_leader_types(): pyball = PyBall() return pyball.get_league_leader_types()
def test_prospects(): pyball = PyBall() return pyball.get_draft_prospects_by_year(2017)
def test_bad_draft_year(): pyball = PyBall() with pytest.raises(BadRequestError): pyball.get_draft_by_year("BadYear")
def test_get_season(): pyball = PyBall() with pytest.raises(NotImplementedError): pyball.get_seasons()
def test_get_season_took_too_long(): pyball = PyBall() with pytest.raises(TookTooLongError): pyball._get("{0}/seasons".format(BASE_URL))
def test_metrics(): pyball = PyBall() return pyball.get_metrics()
def test_event_types(): pyball = PyBall() return pyball.get_event_types()
def test_venue_id_not_a_num(): pyball = PyBall() with pytest.raises(BadRequestError): pyball.get_venue("not_an_id")
def test_venue(): pyball = PyBall() return pyball.get_venue(1)
def test_bad_venue_id(): pyball = PyBall() with pytest.raises(InvalidIdError): pyball.get_venue(-1)
def test_get_not_implemented_draft_prospects(): pyball = PyBall() with pytest.raises(NotImplementedError): pyball.get_draft_prospects()
def test_team_coaches(): pyball = PyBall() return pyball.get_teams_coaches(114)
def test_positions(): pyball = PyBall() return pyball.get_positions()
def test_game_status(): pyball = PyBall() return pyball.get_game_status()
def test_get_season_by_id_took_too_long(): pyball = PyBall() with pytest.raises(TookTooLongError): pyball._get("{0}/seasons/{1}".format(BASE_URL, "fall"))
def test_platform(): pyball = PyBall() return pyball.get_platforms()
def test_get_season_by_id(): pyball = PyBall() with pytest.raises(NotImplementedError): pyball.get_season_by_id("AnyValue")
def test_game_type(): pyball = PyBall() return pyball.get_game_types()
def test_draft(): pyball = PyBall() return pyball.get_draft_by_year(2017)
def test_languages(): pyball = PyBall() return pyball.get_languages()
def test_latest_draft_pick(): pyball = PyBall() return pyball.get_latest_draftee_by_year(2017)
def test_stats_type(): pyball = PyBall() return pyball.get_stats_type()
def test_get_not_found_draft_prospects(): pyball = PyBall() with pytest.raises(NotFound): pyball._get("{}/draft/prospects".format(BASE_URL))
def schedule_by_dates(): pyball = PyBall() return pyball.get_schedule_by_id_dates(12, '2019-01-01', '2020-01-01')
def test_situation_codes(): pyball = PyBall() return pyball.get_situation_codes()
def schedule_today(): pyball = PyBall() return pyball.get_schedule_by_id_today(12)
def league(): pyball = PyBall() league_id = pyball.get_teams()[0].league.id return pyball.get_league_by_id(league_id)
def test_divisions(): pyball = PyBall() return pyball.get_divisions()