Radarr/src/NzbDrone.Integration.Test/ApiTests/CommandFixture.cs

18 lines
441 B
C#

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_rss_sync()
{
var response = Commands.Post(new SimpleCommandResource { Name = "rsssync" });
response.Id.Should().NotBe(0);
}
}
}