mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-08 02:34:19 -04:00
Update tests/Jellyfin.Api.Tests/Controllers/EncodedQueryStringTest.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
This commit is contained in:
parent
043e69d252
commit
5f70b4ead1
@ -20,15 +20,6 @@ namespace Jellyfin.Api.Tests.Controllers
|
|||||||
_factory = factory;
|
_factory = factory;
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
|
||||||
public async Task Ensure_Ping_Working()
|
|
||||||
{
|
|
||||||
var client = _factory.CreateClient();
|
|
||||||
|
|
||||||
var response = await client.GetAsync("system/ping").ConfigureAwait(false);
|
|
||||||
Assert.Equal(HttpStatusCode.OK, response.StatusCode);
|
|
||||||
}
|
|
||||||
|
|
||||||
[Theory]
|
[Theory]
|
||||||
[InlineData("a=1&b=2&c=3", "a=1&b=2&c=3")] // won't be processed as there is more than 1.
|
[InlineData("a=1&b=2&c=3", "a=1&b=2&c=3")] // won't be processed as there is more than 1.
|
||||||
[InlineData("a=1", "a=1")] // won't be processed as it has a value
|
[InlineData("a=1", "a=1")] // won't be processed as it has a value
|
||||||
|
Loading…
x
Reference in New Issue
Block a user