Fixed broken FailedDownloadService tests

pull/35/head
Mark McDowall 11 years ago
parent 7c6fad155a
commit 7b6549fcd3

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

@ -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();
}
}
}

Loading…
Cancel
Save