Fixed test case for unavailable download client.

This commit is contained in:
Taloth Saldono 2017-08-09 23:34:52 +02:00
parent 2d1d1c8a99
commit 9471343533
1 changed files with 5 additions and 7 deletions

View File

@ -182,12 +182,10 @@ namespace NzbDrone.Core.Test.Download
[Test] [Test]
public void should_not_attempt_download_if_client_isnt_configure() public void should_not_attempt_download_if_client_isnt_configure()
{ {
Subject.DownloadReport(_parseResult); Assert.Throws<DownloadClientUnavailableException>(() => Subject.DownloadReport(_parseResult));
Mocker.GetMock<IDownloadClient>().Verify(c => c.Download(It.IsAny<RemoteEpisode>()), Times.Never()); Mocker.GetMock<IDownloadClient>().Verify(c => c.Download(It.IsAny<RemoteEpisode>()), Times.Never());
VerifyEventNotPublished<EpisodeGrabbedEvent>(); VerifyEventNotPublished<EpisodeGrabbedEvent>();
ExceptionVerification.ExpectedWarns(1);
} }
[Test] [Test]