mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 17:13:49 -07:00
Naming config fixed, with integration tests
This commit is contained in:
parent
1e3a308917
commit
dd37713a10
7 changed files with 52 additions and 11 deletions
|
@ -55,6 +55,12 @@ namespace NzbDrone.Integration.Test.Client
|
|||
return Get<TResource>(request, statusCode);
|
||||
}
|
||||
|
||||
public TResource GetSingle(HttpStatusCode statusCode = HttpStatusCode.OK)
|
||||
{
|
||||
var request = BuildRequest();
|
||||
return Get<TResource>(request, statusCode);
|
||||
}
|
||||
|
||||
public void Delete(int id)
|
||||
{
|
||||
var request = BuildRequest(id.ToString());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue