mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-03 13:44:31 -04:00
15 lines
392 B
C#
15 lines
392 B
C#
using API.Services.Plus;
|
|
using Xunit;
|
|
|
|
namespace API.Tests.Services;
|
|
|
|
public class ScrobblingServiceTests
|
|
{
|
|
[Theory]
|
|
[InlineData("https://anilist.co/manga/35851/Byeontaega-Doeja/", 35851)]
|
|
public void CanParseWeblink(string link, long expectedId)
|
|
{
|
|
Assert.Equal(ScrobblingService.ExtractId<long>(link, ScrobblingService.AniListWeblinkWebsite), expectedId);
|
|
}
|
|
}
|