Settings wired up

This commit is contained in:
Mark McDowall 2013-03-03 16:09:43 -08:00
commit 50f6ec4fc6
23 changed files with 480 additions and 42 deletions

View file

@ -76,6 +76,7 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("S02E10 6-50 to SLC [SDTV]", "", 2, 10)]
[TestCase("Franklin & Bash S02E10 6-50 to SLC [SDTV]", "Franklin & Bash", 2, 10)]
[TestCase("The_Big_Bang_Theory_-_6x12_-_The_Egg_Salad_Equivalency_[HDTV-720p]", "The Big Bang Theory", 6, 12)]
[TestCase("Top_Gear.19x06.720p_HDTV_x264-FoV", "Top Gear", 19, 6)]
public void ParseTitle_single(string postTitle, string title, int seasonNumber, int episodeNumber)
{
var result = Parser.ParseTitle(postTitle);