Fixed broken FailedDownloadService tests

This commit is contained in:
Mark McDowall 2013-10-29 09:51:54 -07:00
parent 7c6fad155a
commit 7b6549fcd3
2 changed files with 17 additions and 1 deletions

View File

@ -82,7 +82,6 @@ namespace NzbDrone.Core.Test.Download
VerifyEventNotPublished<EpisodeGrabbedEvent>();
}
[Test]
public void should_not_attempt_download_if_client_isnt_configure()
{

View File

@ -4,6 +4,7 @@ using System.Linq;
using FizzWare.NBuilder;
using Moq;
using NUnit.Framework;
using NzbDrone.Core.Configuration;
using NzbDrone.Core.Download;
using NzbDrone.Core.History;
using NzbDrone.Core.Messaging.Events;
@ -34,6 +35,10 @@ namespace NzbDrone.Core.Test.Download
Mocker.GetMock<IProvideDownloadClient>()
.Setup(c => c.GetDownloadClient()).Returns(Mocker.GetMock<IDownloadClient>().Object);
Mocker.GetMock<IConfigService>()
.SetupGet(s => s.EnableFailedDownloadHandling)
.Returns(true);
}
private void GivenNoGrabbedHistory()
@ -188,5 +193,17 @@ namespace NzbDrone.Core.Test.Download
VerifyFailedDownloads(2);
}
[Test]
public void should_skip_if_enable_failed_download_handling_is_off()
{
Mocker.GetMock<IConfigService>()
.SetupGet(s => s.EnableFailedDownloadHandling)
.Returns(false);
Subject.Execute(new FailedDownloadCommand());
VerifyNoFailedDownloads();
}
}
}