mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-22 22:15:17 -04:00
27 lines
689 B
C#
27 lines
689 B
C#
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Core.DataAugmentation.DailySeries;
|
|
using NzbDrone.Core.Test.Framework;
|
|
using NzbDrone.Test.Common.Categories;
|
|
|
|
namespace NzbDrone.Core.Test.DataAugmentation.DailySeries
|
|
{
|
|
[TestFixture]
|
|
[IntegrationTest]
|
|
public class DailySeriesDataProxyFixture : CoreTest<DailySeriesDataProxy>
|
|
{
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
UseRealHttp();
|
|
}
|
|
|
|
[Test]
|
|
public void should_get_list_of_daily_series()
|
|
{
|
|
var list = Subject.GetDailySeriesIds();
|
|
list.Should().NotBeEmpty();
|
|
list.Should().OnlyHaveUniqueItems();
|
|
}
|
|
}
|
|
} |