mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
New: Added support for limited retention. Reports older than the configured retention are skipped.
This commit is contained in:
parent
0dcbe11a41
commit
9d126e54c9
7 changed files with 7 additions and 30 deletions
|
@ -53,6 +53,7 @@ namespace NzbDrone.Core.Test
|
|||
parseResults.Should().NotBeEmpty();
|
||||
parseResults.Should().OnlyContain(s => s.Indexer == mockIndexer.Name);
|
||||
parseResults.Should().OnlyContain(s => !String.IsNullOrEmpty(s.OriginalString));
|
||||
parseResults.Should().OnlyContain(s => s.Age >= 0);
|
||||
}
|
||||
|
||||
private void WithConfiguredIndexers()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue