Fixed: Should allow space/period between season and episode number patterns in naming

This commit is contained in:
Mark McDowall
2014-10-27 07:38:53 -07:00
parent c4836975a9
commit 0e436f371b
3 changed files with 21 additions and 1 deletions
@@ -87,6 +87,8 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("Shark Week S2009E09 [SDTV].avi", "Shark Week", 2009, 9)]
[TestCase("St_Elsewhere_209_Aids_And_Comfort", "St Elsewhere", 2, 9)]
[TestCase("[Impatience] Locodol - 0x01 [720p][34073169].mkv", "Locodol", 0, 1)]
[TestCase("South.Park.S15.E06.City.Sushi", "South Park", 15, 6)]
[TestCase("South Park - S15 E06 - City Sushi", "South Park", 15, 6)]
//[TestCase("", "", 0, 0)]
public void should_parse_single_episode(string postTitle, string title, int seasonNumber, int episodeNumber)
{