Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/41cb5c02e8a8090d36175220253e1ec6eb1c2f67
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
20 additions and
0 deletions
@ -102,6 +102,15 @@ namespace NzbDrone.Core.Test.OrganizerTests
. Should ( ) . Be ( "SOUTH PARK" ) ;
}
[Test]
public void should_replace_SERIES_TITLE_with_random_casing_should_keep_original_casing ( )
{
_namingConfig . StandardEpisodeFormat = "{sErIES-tItLE}" ;
Subject . BuildFilename ( new List < Episode > { _episode1 } , _series , _episodeFile )
. Should ( ) . Be ( _series . Title . Replace ( ' ' , '-' ) ) ;
}
[Test]
public void should_replace_series_title_with_all_lower_case ( )
{
@ -111,6 +120,8 @@ namespace NzbDrone.Core.Test.OrganizerTests
. Should ( ) . Be ( "south park" ) ;
}
[Test]
public void should_replace_episode_title ( )
{
@ -120,6 +131,15 @@ namespace NzbDrone.Core.Test.OrganizerTests
. Should ( ) . Be ( "City Sushi" ) ;
}
[Test]
public void should_replace_episode_title_if_pattern_has_random_casing ( )
{
_namingConfig . StandardEpisodeFormat = "{ePisOde-TitLe}" ;
Subject . BuildFilename ( new List < Episode > { _episode1 } , _series , _episodeFile )
. Should ( ) . Be ( "City-Sushi" ) ;
}
[Test]
public void should_replace_season_number_with_single_digit ( )
{