Fixed broken Season parsing REGEX, added test to verify issue without parsing XML.

This commit is contained in:
Mark McDowall 2011-09-19 21:29:04 -07:00
commit 43fa8a1f66
2 changed files with 2 additions and 1 deletions

View file

@ -331,6 +331,7 @@ namespace NzbDrone.Core.Test
[TestCase("Eureka Season 1 720p WEB DL DD 5 1 h264 TjHD", "Eureka", 1)]
[TestCase("The Office Season4 WS PDTV XviD FUtV", "The Office", 4)]
[TestCase("Eureka S 01 720p WEB DL DD 5 1 h264 TjHD", "Eureka", 1)]
[TestCase("Doctor Who Confidential Season 3", "Doctor Who Confidential", 3)]
public void parse_season_info(string postTitle, string seriesName, int seasonNumber)
{
var result = Parser.ParseTitle(postTitle);