Ejemplo n.º 1
0
        public async void FindChapters()
        {
            string url = "https://www.mangahere.cc/manga/deathtopia/";

            Assert.True(service.Of(url));
            var chapters = await service.GetChapters(url, new Progress <string>(), source.Token);

            Assert.Equal(66, chapters.Count());
            var chapter = chapters.Last();

            Assert.Equal("Deathtopia Ch.001 - Those People", chapter.Name);
            Assert.Equal("https://www.mangahere.cc/manga/deathtopia/c001/1.html", chapter.Url);
        }