aboutsummaryrefslogtreecommitdiff
path: root/tests/Jellyfin.Server.Implementations.Tests/Updates/InstallationManagerTests.cs
diff options
context:
space:
mode:
authorAmbulantRex <21176662+AmbulantRex@users.noreply.github.com>2023-04-09 10:53:09 -0600
committerAmbulantRex <21176662+AmbulantRex@users.noreply.github.com>2023-04-09 10:53:09 -0600
commit7dd4201971f1bb19ea380f2ca83aed11206cfe97 (patch)
tree28b2b4bc79275bfe4163c3f7bc4282d075cfba16 /tests/Jellyfin.Server.Implementations.Tests/Updates/InstallationManagerTests.cs
parent3a731051adf6d636517e5a9babbbe9f9da7d520b (diff)
Reconcile pre-packaged meta.json against manifest on install
Diffstat (limited to 'tests/Jellyfin.Server.Implementations.Tests/Updates/InstallationManagerTests.cs')
-rw-r--r--tests/Jellyfin.Server.Implementations.Tests/Updates/InstallationManagerTests.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/Jellyfin.Server.Implementations.Tests/Updates/InstallationManagerTests.cs b/tests/Jellyfin.Server.Implementations.Tests/Updates/InstallationManagerTests.cs
index 70d03f8c4..7abd2e685 100644
--- a/tests/Jellyfin.Server.Implementations.Tests/Updates/InstallationManagerTests.cs
+++ b/tests/Jellyfin.Server.Implementations.Tests/Updates/InstallationManagerTests.cs
@@ -106,19 +106,5 @@ namespace Jellyfin.Server.Implementations.Tests.Updates
var ex = await Record.ExceptionAsync(() => _installationManager.InstallPackage(packageInfo, CancellationToken.None)).ConfigureAwait(false);
Assert.Null(ex);
}
-
- [Fact]
- public async Task InstallPackage_WithAssemblies_Success()
- {
- PackageInfo[] packages = await _installationManager.GetPackages(
- "Jellyfin Stable",
- "https://repo.jellyfin.org/releases/plugin/manifest-stable.json",
- false);
-
- packages = _installationManager.FilterPackages(packages, "Anime").ToArray();
- Assert.Single(packages);
- Assert.NotEmpty(packages[0].Versions[0].Assemblies);
- Assert.Equal("Jellyfin.Plugin.Anime.dll", packages[0].Versions[0].Assemblies[0]);
- }
}
}