From c1de7f26d1dd179af3135f1100e28b29a7376daf Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Tue, 13 Dec 2016 23:31:13 -0800 Subject: [PATCH] Added test for 4 digit season number and series title with year --- src/NzbDrone.Core.Test/ParserTests/SingleEpisodeParserFixture.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/NzbDrone.Core.Test/ParserTests/SingleEpisodeParserFixture.cs b/src/NzbDrone.Core.Test/ParserTests/SingleEpisodeParserFixture.cs index 98bd24968..76a585b69 100644 --- a/src/NzbDrone.Core.Test/ParserTests/SingleEpisodeParserFixture.cs +++ b/src/NzbDrone.Core.Test/ParserTests/SingleEpisodeParserFixture.cs @@ -124,6 +124,7 @@ namespace NzbDrone.Core.Test.ParserTests [TestCase("O.J.Simpson.Made.in.America.Part.Two.720p.HDTV.x264-2HD", "O J Simpson Made in America", 1, 2)] [TestCase("The.100000.Dollar.Pyramid.2016.S01E05.720p.HDTV.x264-W4F", "The 100000 Dollar Pyramid 2016", 1, 5)] [TestCase("Class S01E02 (22 October 2016) HDTV 720p [Webrip]", "Class", 1, 2)] + [TestCase("this.is.not.happening.2015.0308-yestv", "this is not happening 2015", 3, 8)] //[TestCase("", "", 0, 0)] public void should_parse_single_episode(string postTitle, string title, int seasonNumber, int episodeNumber) {