1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-22 22:16:13 -04:00

Fixed: Season packs will no longer be grabbed if it contains an unmonitored episode.

This commit is contained in:
Taloth Saldono
2015-03-13 21:08:00 +01:00
parent 74ad841be4
commit d1ce1bf218
2 changed files with 7 additions and 7 deletions
@@ -91,17 +91,17 @@ namespace NzbDrone.Core.Test.DecisionEngineTests
}
[Test]
public void only_first_episode_not_monitored_should_return_monitored()
public void only_first_episode_not_monitored_should_return_false()
{
WithFirstEpisodeUnmonitored();
_monitoredEpisodeSpecification.IsSatisfiedBy(_parseResultMulti, null).Accepted.Should().BeTrue();
_monitoredEpisodeSpecification.IsSatisfiedBy(_parseResultMulti, null).Accepted.Should().BeFalse();
}
[Test]
public void only_second_episode_not_monitored_should_return_monitored()
public void only_second_episode_not_monitored_should_return_false()
{
WithSecondEpisodeUnmonitored();
_monitoredEpisodeSpecification.IsSatisfiedBy(_parseResultMulti, null).Accepted.Should().BeTrue();
_monitoredEpisodeSpecification.IsSatisfiedBy(_parseResultMulti, null).Accepted.Should().BeFalse();
}
[Test]