Fixed bug where service where windows service couldn't be installed.

This commit is contained in:
kay.one 2011-10-24 23:11:50 -07:00
commit c1116d0faa
2 changed files with 4 additions and 3 deletions

View file

@ -66,6 +66,7 @@ namespace NzbDrone.Core.Test
[TestCase("C:/Test/TV/Chuck.4x05.HDTV.XviD-LOL", 4, 5)]
[TestCase(@"P:\TV Shows\House\Season 6\S06E13 - 5 to 9 - 720p BluRay.mkv", 6, 13)]
[TestCase(@"S:\TV Drop\House - 10x11 - Title [SDTV]\1011 - Title.avi", 10, 11)]
[TestCase(@"S:\TV Drop\_ParseError_King of the Hill - 10x12 - 24 Hour Propane People [SDTV]\1012 - 24 Hour Propane People.avi", 10, 12)]
public void PathParse_tests(string path, int season, int episode)
{
var result = Parser.ParsePath(path);