Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/d8189260bb69a2eb7bf5c5baf8e6a6294300d683
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
14 additions and
9 deletions
@ -5,11 +5,14 @@ using NUnit.Framework;
using NzbDrone.Common ;
using NzbDrone.Core.Configuration ;
using NzbDrone.Core.Download.Clients.Nzbget ;
using NzbDrone.Core.Parser ;
using NzbDrone.Core.Parser.Model ;
using NzbDrone.Core.Test.Framework ;
using NzbDrone.Core.Tv ;
namespace NzbDrone.Core.Test.Download.DownloadClientTests.NzbgetProviderTests
{
public class QueueFixture : CoreTest
public class QueueFixture : CoreTest < NzbgetClient >
{
[SetUp]
public void Setup ( )
@ -49,10 +52,9 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.NzbgetProviderTests
{
WithEmptyQueue ( ) ;
Mocker . Resolve < NzbgetClient > ( )
. GetQueue ( )
. Should ( )
. BeEmpty ( ) ;
Subject . GetQueue ( )
. Should ( )
. BeEmpty ( ) ;
}
[Test]
@ -60,10 +62,13 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.NzbgetProviderTests
{
WithFullQueue ( ) ;
Mocker . Resolve < NzbgetClient > ( )
. GetQueue ( )
. Should ( )
. HaveCount ( 1 ) ;
Mocker . GetMock < IParsingService > ( )
. Setup ( s = > s . Map ( It . IsAny < ParsedEpisodeInfo > ( ) , 0 , null ) )
. Returns ( new RemoteEpisode { Series = new Series ( ) } ) ;
Subject . GetQueue ( )
. Should ( )
. HaveCount ( 1 ) ;
}
}
}