How to use the riotwatcher._apis.LolStatusApiV3 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_LolStatusApiV3.py View on Github external
def test_shard_data(self):
        mock_base_api = MagicMock()
        expected_return = object()
        mock_base_api.raw_request.return_value = expected_return

        status = LolStatusApiV3(mock_base_api)
        region = "afaaas"

        ret = status.shard_data(region)

        mock_base_api.raw_request.assert_called_once_with(
            LolStatusApiV3.__name__,
            status.shard_data.__name__,
            region,
            "https://afaaas.api.riotgames.com/lol/status/v3/shard-data",
            {},
        )

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

        status = LolStatusApiV3(mock_base_api)
        region = "afaaas"

        ret = status.shard_data(region)

        mock_base_api.raw_request.assert_called_once_with(
            LolStatusApiV3.__name__,
            status.shard_data.__name__,
            region,
            "https://afaaas.api.riotgames.com/lol/status/v3/shard-data",
            {},
        )

        assert ret is expected_return