mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
New: New releases that fail will be retried a second time after waiting 1hr (configurable) Fixed: Blacklisting releases with the same date and vastly different ages
29 lines
766 B
C#
29 lines
766 B
C#
using System;
|
|
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Common.Cache;
|
|
using NzbDrone.Test.Common;
|
|
|
|
namespace NzbDrone.Common.Test.CacheTests
|
|
{
|
|
[TestFixture]
|
|
public class CachedManagerFixture : TestBase<ICacheManager>
|
|
{
|
|
[Test]
|
|
public void should_return_proper_type_of_cache()
|
|
{
|
|
var result = Subject.GetCache<DateTime>(typeof(string));
|
|
|
|
result.Should().BeOfType<Cached<DateTime>>();
|
|
}
|
|
|
|
[Test]
|
|
public void multiple_calls_should_get_the_same_cache()
|
|
{
|
|
var result1 = Subject.GetCache<DateTime>(typeof(string));
|
|
var result2 = Subject.GetCache<DateTime>(typeof(string));
|
|
|
|
result1.Should().BeSameAs(result2);
|
|
}
|
|
}
|
|
} |