From 61194bc9253d12a91c0b838615702fd2aedeec1f Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 25 May 2014 22:39:06 -0700 Subject: [PATCH] Added poorly named multi episode test (commented out) --- src/NzbDrone.Core.Test/ParserTests/MultiEpisodeParserFixture.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/NzbDrone.Core.Test/ParserTests/MultiEpisodeParserFixture.cs b/src/NzbDrone.Core.Test/ParserTests/MultiEpisodeParserFixture.cs index 604722ba0..f45ddc6b0 100644 --- a/src/NzbDrone.Core.Test/ParserTests/MultiEpisodeParserFixture.cs +++ b/src/NzbDrone.Core.Test/ParserTests/MultiEpisodeParserFixture.cs @@ -38,6 +38,7 @@ namespace NzbDrone.Core.Test.ParserTests [TestCase("Neighbours.S29E161-E165.PDTV.x264-FQM", "Neighbours", 29, new[] { 161, 162, 163, 164, 165 })] [TestCase("Shortland.Street.S22E5363-E5366.HDTV.x264-FiHTV", "Shortland Street", 22, new[] { 5363, 5364, 5365, 5366 })] [TestCase("the.office.101.102.hdtv-lol", "The Office", 1, new[] { 1, 2 })] + //[TestCase("Adventure Time - 5x01 - x02 - Finn the Human (2) & Jake the Dog (3)", "Adventure Time", 5, new [] { 1, 2 })] public void should_parse_multiple_episodes(string postTitle, string title, int season, int[] episodes) { var result = Parser.Parser.ParseTitle(postTitle);