From b17cccd736290a7d1ca4bae0d9270db7d68c8986 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sun, 7 Oct 2018 18:25:46 -0400 Subject: [PATCH] Fixed: Removed duplicate test cases --- src/NzbDrone.Core.Test/ParserTests/ParserFixture.cs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/NzbDrone.Core.Test/ParserTests/ParserFixture.cs b/src/NzbDrone.Core.Test/ParserTests/ParserFixture.cs index a22f1b562..be7b93dbb 100644 --- a/src/NzbDrone.Core.Test/ParserTests/ParserFixture.cs +++ b/src/NzbDrone.Core.Test/ParserTests/ParserFixture.cs @@ -100,16 +100,6 @@ namespace NzbDrone.Core.Test.ParserTests Parser.Parser.ParseAlbumTitle(title).Quality.QualitySource.Should().Be(QualitySource.Extension); } - [TestCase("of Montreal-Hissing Fauna, Are You The Destroyer? 2007", "Hissing Fauna, Are You The Destroyer?", "of Montreal", "2007")] - [TestCase("of Montreal - 2007 - Hissing Fauna, Are You The Destroyer?", "Hissing Fauna, Are You The Destroyer?", "of Montreal", "2007")] - public void should_parse_album(string title, string correctAlbum, string correctArtist, string correctYear) - { - ParsedAlbumInfo result = Parser.Parser.ParseAlbumTitle(title); - result.AlbumTitle.Should().Be(correctAlbum); - result.ArtistName.Should().Be(correctArtist); - result.ReleaseDate.Should().Be(correctYear); - } - [TestCase("VA - The Best 101 Love Ballads (2017) MP3 [192 kbps]", "VA", "The Best 101 Love Ballads")] [TestCase("ATCQ - The Love Movement 1998 2CD 192kbps RIP", "ATCQ", "The Love Movement")] //[TestCase("A Tribe Called Quest - The Love Movement 1998 2CD [192kbps] RIP", "A Tribe Called Quest", "The Love Movement")]