コード例 #1
0
ファイル: test_division.py プロジェクト: rjbraddock/PyBall
def test_bad_division():
    pyball = PyBall()
    with pytest.raises(BadRequestError):
        pyball.get_division_by_id("InvalidID")
コード例 #2
0
def test_stats_group():
    pyball = PyBall()
    return pyball.get_stats_groups()
コード例 #3
0
def test_league_leader_types():
    pyball = PyBall()
    return pyball.get_league_leader_types()
コード例 #4
0
def test_prospects():
    pyball = PyBall()
    return pyball.get_draft_prospects_by_year(2017)
コード例 #5
0
def test_bad_draft_year():
    pyball = PyBall()
    with pytest.raises(BadRequestError):
        pyball.get_draft_by_year("BadYear")
コード例 #6
0
def test_get_season():
    pyball = PyBall()
    with pytest.raises(NotImplementedError):
        pyball.get_seasons()
コード例 #7
0
def test_get_season_took_too_long():
    pyball = PyBall()
    with pytest.raises(TookTooLongError):
        pyball._get("{0}/seasons".format(BASE_URL))
コード例 #8
0
ファイル: test_metric.py プロジェクト: rjbraddock/PyBall
def test_metrics():
    pyball = PyBall()
    return pyball.get_metrics()
コード例 #9
0
def test_event_types():
    pyball = PyBall()
    return pyball.get_event_types()
コード例 #10
0
def test_venue_id_not_a_num():
    pyball = PyBall()
    with pytest.raises(BadRequestError):
        pyball.get_venue("not_an_id")
コード例 #11
0
def test_venue():
    pyball = PyBall()
    return pyball.get_venue(1)
コード例 #12
0
def test_bad_venue_id():
    pyball = PyBall()
    with pytest.raises(InvalidIdError):
        pyball.get_venue(-1)
コード例 #13
0
def test_get_not_implemented_draft_prospects():
    pyball = PyBall()
    with pytest.raises(NotImplementedError):
        pyball.get_draft_prospects()
コード例 #14
0
def test_team_coaches():
    pyball = PyBall()
    return pyball.get_teams_coaches(114)
コード例 #15
0
ファイル: test_position.py プロジェクト: rjbraddock/PyBall
def test_positions():
    pyball = PyBall()
    return pyball.get_positions()
コード例 #16
0
ファイル: test_game_status.py プロジェクト: rjbraddock/PyBall
def test_game_status():
    pyball = PyBall()
    return pyball.get_game_status()
コード例 #17
0
def test_get_season_by_id_took_too_long():
    pyball = PyBall()
    with pytest.raises(TookTooLongError):
        pyball._get("{0}/seasons/{1}".format(BASE_URL, "fall"))
コード例 #18
0
ファイル: test_platform.py プロジェクト: rjbraddock/PyBall
def test_platform():
    pyball = PyBall()
    return pyball.get_platforms()
コード例 #19
0
def test_get_season_by_id():
    pyball = PyBall()
    with pytest.raises(NotImplementedError):
        pyball.get_season_by_id("AnyValue")
コード例 #20
0
ファイル: test_game_type.py プロジェクト: reddigari/PyBall
def test_game_type():
    pyball = PyBall()
    return pyball.get_game_types()
コード例 #21
0
def test_draft():
    pyball = PyBall()
    return pyball.get_draft_by_year(2017)
コード例 #22
0
def test_languages():
    pyball = PyBall()
    return pyball.get_languages()
コード例 #23
0
def test_latest_draft_pick():
    pyball = PyBall()
    return pyball.get_latest_draftee_by_year(2017)
コード例 #24
0
ファイル: test_stats_type.py プロジェクト: rjbraddock/PyBall
def test_stats_type():
    pyball = PyBall()
    return pyball.get_stats_type()
コード例 #25
0
def test_get_not_found_draft_prospects():
    pyball = PyBall()
    with pytest.raises(NotFound):
        pyball._get("{}/draft/prospects".format(BASE_URL))
コード例 #26
0
def schedule_by_dates():
    pyball = PyBall()
    return pyball.get_schedule_by_id_dates(12, '2019-01-01', '2020-01-01')
コード例 #27
0
def test_situation_codes():
    pyball = PyBall()
    return pyball.get_situation_codes()
コード例 #28
0
def schedule_today():
    pyball = PyBall()
    return pyball.get_schedule_by_id_today(12)
コード例 #29
0
def league():
    pyball = PyBall()
    league_id = pyball.get_teams()[0].league.id
    return pyball.get_league_by_id(league_id)
コード例 #30
0
ファイル: test_division.py プロジェクト: rjbraddock/PyBall
def test_divisions():
    pyball = PyBall()
    return pyball.get_divisions()