Ignore all test controllers

This commit is contained in:
crobibero 2021-06-13 06:30:28 -06:00
parent 04daf0ff49
commit d32bbf181a
2 changed files with 16 additions and 2 deletions

View File

@ -0,0 +1,14 @@
using Jellyfin.Api;
using Microsoft.AspNetCore.Mvc;
namespace Jellyfin.Server.Integration.Tests.Controllers
{
/// <summary>
/// Base controller for testing infrastructure.
/// Automatically ignored in generated openapi spec.
/// </summary>
[ApiExplorerSettings(IgnoreApi = true)]
public class BaseJellyfinTestController : BaseJellyfinApiController
{
}
}

View File

@ -3,12 +3,12 @@ using System.Linq;
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
namespace Jellyfin.Api.Controllers namespace Jellyfin.Server.Integration.Tests.Controllers
{ {
/// <summary> /// <summary>
/// Controller for testing the encoded url. /// Controller for testing the encoded url.
/// </summary> /// </summary>
public class EncoderController : BaseJellyfinApiController public class EncoderController : BaseJellyfinTestController
{ {
/// <summary> /// <summary>
/// Tests the url decoding. /// Tests the url decoding.