1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Integration.Test/HistoryIntegrationTest.cs

21 lines
513 B
C#
Raw Normal View History

2013-09-13 01:42:01 +03:00
using FluentAssertions;
2013-09-10 08:39:18 +03:00
using NUnit.Framework;
namespace NzbDrone.Integration.Test
{
[TestFixture]
public class HistoryIntegrationTest : IntegrationTest
{
[Test]
public void history_should_be_empty()
{
2013-09-10 10:01:27 +03:00
var history = History.GetPaged(1, 15, "date", "desc");
2013-09-10 08:39:18 +03:00
history.Records.Count.Should().Be(0);
history.Page.Should().Be(1);
history.PageSize.Should().Be(15);
history.Records.Should().BeEmpty();
}
}
}