Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/430fb9aeadfb13c7796a093e4955e6cd6a231a0b?style=unified&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
44 additions and
0 deletions
@ -0,0 +1,41 @@
// ReSharper disable RedundantUsingDirective
using System ;
using System.Collections.Generic ;
using AutoMoq ;
using FizzWare.NBuilder ;
using FluentAssertions ;
using Moq ;
using NUnit.Framework ;
using NzbDrone.Core.Helpers ;
using NzbDrone.Core.Model.Notification ;
using NzbDrone.Core.Providers ;
using NzbDrone.Core.Providers.Jobs ;
using NzbDrone.Core.Repository ;
using NzbDrone.Core.Test.Framework ;
namespace NzbDrone.Core.Test
{
[TestFixture]
// ReSharper disable InconsistentNaming
public class SortHelperTest : TestBase
{
//American Gladiators
//Ancient Apocalypse
//There Will Be Brawl
[TestCase("The Office (US)", "Office (US)")]
[TestCase("A Man in Anger", "Man in Anger")]
[TestCase("An Idiot Abroad", "Idiot Abroad")]
[TestCase("American Gladiators", "American Gladiators")]
[TestCase("Ancient Apocalyps", "Ancient Apocalyps")]
[TestCase("There Will Be Brawl", "There Will Be Brawl")]
[TestCase("30 Rock", "30 Rock")]
[TestCase(null, "")]
public void SkipArticles ( string title , string expected )
{
var result = SortHelper . SkipArticles ( title ) ;
result . Should ( ) . Be ( expected ) ;
}
}
}
@ -9,6 +9,9 @@ namespace NzbDrone.Core.Helpers
{
public static string SkipArticles ( string input )
{
if ( String . IsNullOrEmpty ( input ) )
return String . Empty ;
var articles = new List < string > { "The " , "An " , "A " } ;
foreach ( string article in articles )