mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-17 21:26:22 -04:00
28 lines
717 B
C#
28 lines
717 B
C#
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Core.DataAugmentation.DailySeries;
|
|
using NzbDrone.Core.Test.Framework;
|
|
using NzbDrone.Test.Common;
|
|
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();
|
|
}
|
|
}
|
|
} |