mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-26 22:56:23 -04:00
Fixed: Skip missing episode title check if file is already in series folder
This commit is contained in:
+9
@@ -64,6 +64,15 @@ namespace NzbDrone.Core.Test.MediaFiles.EpisodeImport.Specifications
|
||||
Subject.IsSatisfiedBy(_localEpisode, null).Accepted.Should().BeFalse();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void should_accept_when_file_is_in_series_folder()
|
||||
{
|
||||
_localEpisode.ExistingFile = true;
|
||||
_localEpisode.Episodes.First().Title = "TBA";
|
||||
|
||||
Subject.IsSatisfiedBy(_localEpisode, null).Accepted.Should().BeTrue();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void should_accept_when_did_not_air_recently_but_title_is_TBA()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user