diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-06-18 11:44:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-18 11:44:45 +0200 |
| commit | 004c53a5a56bfdd01c1d77b5f433ec0c74ffc90d (patch) | |
| tree | 7e71dfe8d0e553eba9689df726c3da1f6c9ad48d | |
| parent | cd36b8067fcf80c5ebb47bdd9bea0047d1fe3aef (diff) | |
| parent | d32bbf181a4560542ab91c5a7c4d5dcb453259e2 (diff) | |
Merge pull request #6180 from crobibero/test-controller
Ignore Test Controllers
| -rw-r--r-- | tests/Jellyfin.Server.Integration.Tests/Controllers/BaseJellyfinTestController.cs | 14 | ||||
| -rw-r--r-- | tests/Jellyfin.Server.Integration.Tests/Controllers/EncoderController.cs | 4 |
2 files changed, 16 insertions, 2 deletions
diff --git a/tests/Jellyfin.Server.Integration.Tests/Controllers/BaseJellyfinTestController.cs b/tests/Jellyfin.Server.Integration.Tests/Controllers/BaseJellyfinTestController.cs new file mode 100644 index 000000000..9db8689a7 --- /dev/null +++ b/tests/Jellyfin.Server.Integration.Tests/Controllers/BaseJellyfinTestController.cs @@ -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 + { + } +} diff --git a/tests/Jellyfin.Server.Integration.Tests/Controllers/EncoderController.cs b/tests/Jellyfin.Server.Integration.Tests/Controllers/EncoderController.cs index c8ce58047..1a720c2f6 100644 --- a/tests/Jellyfin.Server.Integration.Tests/Controllers/EncoderController.cs +++ b/tests/Jellyfin.Server.Integration.Tests/Controllers/EncoderController.cs @@ -3,12 +3,12 @@ using System.Linq; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; -namespace Jellyfin.Api.Controllers +namespace Jellyfin.Server.Integration.Tests.Controllers { /// <summary> /// Controller for testing the encoded url. /// </summary> - public class EncoderController : BaseJellyfinApiController + public class EncoderController : BaseJellyfinTestController { /// <summary> /// Tests the url decoding. |
