You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
513 B
21 lines
513 B
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
|
|
namespace NzbDrone.Integration.Test
|
|
{
|
|
[TestFixture]
|
|
public class HistoryIntegrationTest : IntegrationTest
|
|
{
|
|
[Test]
|
|
public void history_should_be_empty()
|
|
{
|
|
var history = History.GetPaged(1, 15, "date", "desc");
|
|
|
|
history.Records.Count.Should().Be(0);
|
|
history.Page.Should().Be(1);
|
|
history.PageSize.Should().Be(15);
|
|
history.Records.Should().BeEmpty();
|
|
}
|
|
|
|
}
|
|
} |