1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

added tests for when patter doesn't match our 'expected casing'

This commit is contained in:
kayone 2013-11-13 18:08:20 -08:00 committed by Mark McDowall
parent 4cfb2f271d
commit 41cb5c02e8

View File

@ -102,6 +102,15 @@ public void should_replace_SERIES_TITLE_with_all_caps()
.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 @@ public void should_replace_series_title_with_all_lower_case()
.Should().Be("south park");
}
[Test]
public void should_replace_episode_title()
{
@ -120,6 +131,15 @@ public void should_replace_episode_title()
.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()
{