Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/7b6549fcd351d744155a04fab93aa2483854ec46
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
17 additions and
1 deletions
@ -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 ( ) ;
}
}
}