|
|
|
@ -35,7 +35,7 @@ namespace NzbDrone.Core.Test.ParserTests
|
|
|
|
|
[TestCase("Hawaii Five 0", "hawaiifive0")]
|
|
|
|
|
[TestCase("Match of the Day", "matchday")]
|
|
|
|
|
[TestCase("Match of the Day 2", "matchday2")]
|
|
|
|
|
public void should_parse_series_name(string postTitle, string title)
|
|
|
|
|
public void should_parse_series_name(String postTitle, String title)
|
|
|
|
|
{
|
|
|
|
|
var result = Parser.Parser.ParseSeriesName(postTitle);
|
|
|
|
|
result.Should().Be(title.CleanSeriesTitle());
|
|
|
|
@ -48,5 +48,11 @@ namespace NzbDrone.Core.Test.ParserTests
|
|
|
|
|
|
|
|
|
|
title.CleanSeriesTitle().Should().Be("carnivale");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestCase("[scnzbefnet][509103] 2.Broke.Girls.S03E18.720p.HDTV.X264-DIMENSION", "2 Broke Girls")]
|
|
|
|
|
public void should_remove_request_info_from_title(String postTitle, String title)
|
|
|
|
|
{
|
|
|
|
|
Parser.Parser.ParseTitle(postTitle).SeriesTitle.Should().Be(title.CleanSeriesTitle());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|