From d32bbf181a4560542ab91c5a7c4d5dcb453259e2 Mon Sep 17 00:00:00 2001 From: crobibero Date: Sun, 13 Jun 2021 06:30:28 -0600 Subject: Ignore all test controllers --- .../Controllers/BaseJellyfinTestController.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/Jellyfin.Server.Integration.Tests/Controllers/BaseJellyfinTestController.cs (limited to 'tests/Jellyfin.Server.Integration.Tests/Controllers/BaseJellyfinTestController.cs') 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 +{ + /// + /// Base controller for testing infrastructure. + /// Automatically ignored in generated openapi spec. + /// + [ApiExplorerSettings(IgnoreApi = true)] + public class BaseJellyfinTestController : BaseJellyfinApiController + { + } +} -- cgit v1.2.3