mirror of https://github.com/Sonarr/Sonarr
Confirm scene name is not folder name for batch releases
This commit is contained in:
parent
ac8283d733
commit
75e9d33fea
|
@ -165,6 +165,32 @@ namespace NzbDrone.Core.Test.MediaFiles.EpisodeImport
|
|||
.BeNull();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void should_not_use_folder_name_as_scenename_if_it_is_for_batch()
|
||||
{
|
||||
var batchName = "[HorribleSubs] Series Title (01-62) [1080p] (Batch)";
|
||||
|
||||
_localEpisode.DownloadClientEpisodeInfo = new ParsedEpisodeInfo
|
||||
{
|
||||
FullSeason = false,
|
||||
ReleaseTitle = batchName
|
||||
};
|
||||
|
||||
_localEpisode.Path = Path.Combine(@"C:\Test\Unsorted TV", batchName, "[HorribleSubs] Series Title - 14 [1080p].mkv")
|
||||
.AsOsAgnostic();
|
||||
|
||||
_localEpisode.OtherVideoFiles = true;
|
||||
|
||||
_localEpisode.FolderEpisodeInfo = new ParsedEpisodeInfo
|
||||
{
|
||||
ReleaseTitle = _seasonName,
|
||||
FullSeason = false
|
||||
};
|
||||
|
||||
SceneNameCalculator.GetSceneName(_localEpisode).Should()
|
||||
.BeNull();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void should_not_use_folder_name_as_scenename_if_there_are_other_video_files()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue