def test_invalid_clan(): client = Client() with pytest.raises(APIError): clan = client.get_clan('123445')
def test_clan(): client = Client() clan = client.get_clan('2CCCP') assert clan.name == 'Reddit Alpha' assert clan.badge.name == 'A_Char_Rocket_02'