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.
Prowlarr/src/NzbDrone.Integration.Test/ApiTests/CommandFixture.cs

19 lines
458 B

using FluentAssertions;
using NUnit.Framework;
using NzbDrone.Integration.Test.Client;
namespace NzbDrone.Integration.Test.ApiTests
{
[TestFixture]
public class CommandFixture : IntegrationTest
{
[Test]
public void should_be_able_to_run_update_check()
{
var response = Commands.Post(new SimpleCommandResource { Name = "applicationcheckupdate" });
response.Id.Should().NotBe(0);
}
}
}