1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

added slug integration tests

This commit is contained in:
Keivan Beigi
2013-05-03 19:42:11 -07:00
parent 8373e1ce10
commit 54d95e2e20
5 changed files with 27 additions and 1 deletions
@@ -0,0 +1,16 @@
using NzbDrone.Api.Indexers;
using RestSharp;
namespace NzbDrone.Integration.Test.Client
{
public class ReleaseClient : ClientBase<ReleaseResource>
{
public ReleaseClient(IRestClient restClient)
: base(restClient)
{
}
}
}