Example #1
0
        public void FindAnime()
        {
            var anime = _kitsu.FindAnime("Death Note").Result;

            Assert.True(anime.Exists(x => x.Id == 1376));
            Assert.True(anime.Exists(x => x.Id == 2707));

            anime = _kitsu.FindAnime("Pokémon").Result;
            Assert.True(anime.Any(x => x.Id == 486));
            Assert.True(anime.Any(x => x.Id == 7922));
            Assert.True(anime.Any(x => x.Id == 12531));
        }