1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-27 23:06:29 -04:00

New: Calendar Custom Filter for specials

Closes #8275
This commit is contained in:
Mark McDowall
2025-12-23 10:59:14 -08:00
parent 03cb2e7f63
commit 8ee10adbd4
11 changed files with 36 additions and 27 deletions
@@ -1,9 +1,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using FizzWare.NBuilder;
using FluentAssertions;
using Moq;
using NUnit.Framework;
using NzbDrone.Core.DecisionEngine.Specifications;
using NzbDrone.Core.Parser.Model;
@@ -38,9 +36,6 @@ namespace NzbDrone.Core.Test.DecisionEngineTests
Title = "Series.Title.S01-05.720p.BluRay.X264-RlsGrp"
}
};
Mocker.GetMock<IEpisodeService>().Setup(s => s.EpisodesBetweenDates(It.IsAny<DateTime>(), It.IsAny<DateTime>(), false))
.Returns(new List<Episode>());
}
[Test]