1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Fixed broken test.

This commit is contained in:
Taloth Saldono 2015-05-12 00:49:41 +02:00
parent f221b00795
commit 852f97012f

View File

@ -63,6 +63,7 @@ public void Setup()
{
Series = _series,
Quality = _quality,
Episodes = new List<Episode> { new Episode() },
Path = @"C:\Test\Unsorted\The.Office.S03E115.DVDRip.XviD-OSiTV.avi"
};
@ -207,7 +208,7 @@ public void should_not_throw_if_episodes_are_not_found()
Mocker.GetMock<IParsingService>()
.Setup(c => c.GetLocalEpisode(It.IsAny<String>(), It.IsAny<Series>(), It.IsAny<ParsedEpisodeInfo>(), It.IsAny<Boolean>()))
.Throws(new EpisodeNotFoundException("Episode not found"));
.Returns(new LocalEpisode() { Path = "test" });
_videoFiles = new List<String>
{
@ -218,10 +219,13 @@ public void should_not_throw_if_episodes_are_not_found()
GivenVideoFiles(_videoFiles);
Subject.GetImportDecisions(_videoFiles, _series);
var decisions = Subject.GetImportDecisions(_videoFiles, _series);
Mocker.GetMock<IParsingService>()
.Verify(c => c.GetLocalEpisode(It.IsAny<String>(), It.IsAny<Series>(), It.IsAny<ParsedEpisodeInfo>(), It.IsAny<Boolean>()), Times.Exactly(_videoFiles.Count));
decisions.Should().HaveCount(3);
decisions.First().Rejections.Should().NotBeEmpty();
}
[Test]