How to use the riotwatcher._apis.ChampionApiV3 function in riotwatcher

To help you get started, we’ve selected a few riotwatcher examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github pseudonym117 / Riot-Watcher / tests / _apis / test_ChampionApiV3.py View on Github external
def test_rotations(self):
        mock_base_api = MagicMock()
        expected_return = object()
        mock_base_api.raw_request.return_value = expected_return

        champ = ChampionApiV3(mock_base_api)
        test_region = "fhfds"

        ret = champ.rotations(test_region)

        mock_base_api.raw_request.assert_called_once_with(
            ChampionApiV3.__name__,
            champ.rotations.__name__,
            test_region,
            "https://fhfds.api.riotgames.com/lol/platform/v3/champion-rotations",
            {},
        )

        assert ret is expected_return
github pseudonym117 / Riot-Watcher / tests / _apis / test_ChampionApiV3.py View on Github external
def test_rotations(self):
        mock_base_api = MagicMock()
        expected_return = object()
        mock_base_api.raw_request.return_value = expected_return

        champ = ChampionApiV3(mock_base_api)
        test_region = "fhfds"

        ret = champ.rotations(test_region)

        mock_base_api.raw_request.assert_called_once_with(
            ChampionApiV3.__name__,
            champ.rotations.__name__,
            test_region,
            "https://fhfds.api.riotgames.com/lol/platform/v3/champion-rotations",
            {},
        )

        assert ret is expected_return