public async void GetPetAbilityAsync_Gets_Pet_Ability()
        {
            IWarcraftClient warcraftClient = BuildMockClient(
                requestUri: "https://us.api.blizzard.com/wow/pet/ability/640?locale=en_US",
                responseContent: Resources.PetAbilityResponse);

            RequestResult <PetAbility> result = await warcraftClient.GetPetAbilityAsync(640);

            Assert.NotNull(result.Value);
        }