public async Task GetAnimeVideosAsync_BebopId_ShouldParseCowboyBebopVideos()
        {
            // When
            var bebop = await _jikan.GetAnimeVideosAsync(1);

            // Then
            using (new AssertionScope())
            {
                bebop.Data.PromoVideos.Should().HaveCount(3);
                bebop.Data.PromoVideos.Select(x => x.Title).Should().Contain("PV 2");
                bebop.Data.EpisodeVideos.Should().HaveCount(26);
                bebop.Data.EpisodeVideos.Select(x => x.Title).Should().Contain("Pierrot Le Fou");
            }
        }