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

20 lines
494 B
C#
Raw Normal View History

2016-12-23 21:45:24 +00:00
using FluentAssertions;
using NUnit.Framework;
using NzbDrone.Integration.Test.Client;
namespace NzbDrone.Integration.Test.ApiTests
{
[TestFixture]
2021-10-21 20:04:19 +00:00
[Ignore("Not ready to be used on this branch")]
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);
}
}
2019-12-22 21:24:10 +00:00
}