mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
15 lines
341 B
C#
15 lines
341 B
C#
|
using NUnit.Framework;
|
|||
|
using NzbDrone.Api.Commands;
|
|||
|
|
|||
|
namespace NzbDrone.Integration.Test
|
|||
|
{
|
|||
|
[TestFixture]
|
|||
|
public class CommandIntegrationTest : IntegrationTest
|
|||
|
{
|
|||
|
[Test]
|
|||
|
public void should_be_able_to_run_rss_sync()
|
|||
|
{
|
|||
|
Commands.Post(new CommandResource {Command = "rsssync"});
|
|||
|
}
|
|||
|
}
|
|||
|
}
|