mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
14 lines
424 B
C#
14 lines
424 B
C#
using Xunit;
|
|
|
|
namespace API.Tests.Parser
|
|
{
|
|
public class BookParserTests
|
|
{
|
|
[Theory]
|
|
[InlineData("Gifting The Wonderful World With Blessings! - 3 Side Stories [yuNS][Unknown]", "Gifting The Wonderful World With Blessings!")]
|
|
public void ParseSeriesTest(string filename, string expected)
|
|
{
|
|
Assert.Equal(expected, API.Parser.Parser.ParseSeries(filename));
|
|
}
|
|
}
|
|
} |