diff --git a/CHANGELIST.md b/CHANGELIST.md
index a3587609..563109bd 100644
--- a/CHANGELIST.md
+++ b/CHANGELIST.md
@@ -41,6 +41,7 @@
- Fix parameters after extension change
- Fix logic for deducing region from PlayStation ISN (John Veness)
- Fix broken test logic
+- Remove RedumpLib tests
### 3.2.0 (2024-06-20)
diff --git a/MPF.Test/RedumpLib/EnumExtensionsTests.cs b/MPF.Test/RedumpLib/EnumExtensionsTests.cs
deleted file mode 100644
index f96b9ce1..00000000
--- a/MPF.Test/RedumpLib/EnumExtensionsTests.cs
+++ /dev/null
@@ -1,201 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using SabreTools.RedumpLib.Data;
-using Xunit;
-
-namespace MPF.Test.RedumpLib
-{
- public class EnumExtensionsTests
- {
- ///
- /// MediaType values that support drive speeds
- ///
- private static readonly MediaType?[] _supportDriveSpeeds =
- [
- MediaType.CDROM,
- MediaType.DVD,
- MediaType.GDROM,
- MediaType.HDDVD,
- MediaType.BluRay,
- MediaType.NintendoGameCubeGameDisc,
- MediaType.NintendoWiiOpticalDisc,
- ];
-
- ///
- /// RedumpSystem values that are considered Audio
- ///
- private static readonly RedumpSystem?[] _audioSystems =
- [
- RedumpSystem.AtariJaguarCDInteractiveMultimediaSystem,
- RedumpSystem.AudioCD,
- RedumpSystem.DVDAudio,
- RedumpSystem.HasbroiONEducationalGamingSystem,
- RedumpSystem.HasbroVideoNow,
- RedumpSystem.HasbroVideoNowColor,
- RedumpSystem.HasbroVideoNowJr,
- RedumpSystem.HasbroVideoNowXP,
- RedumpSystem.PlayStationGameSharkUpdates,
- RedumpSystem.PhilipsCDi,
- RedumpSystem.SuperAudioCD,
- ];
-
- ///
- /// RedumpSystem values that are considered markers
- ///
- private static readonly RedumpSystem?[] _markerSystems =
- [
- RedumpSystem.MarkerArcadeEnd,
- RedumpSystem.MarkerComputerEnd,
- RedumpSystem.MarkerDiscBasedConsoleEnd,
- RedumpSystem.MarkerOtherEnd,
- ];
-
- ///
- /// RedumpSystem values that are have reversed ringcodes
- ///
- private static readonly RedumpSystem?[] _reverseRingcodeSystems =
- [
- RedumpSystem.SonyPlayStation2,
- RedumpSystem.SonyPlayStation3,
- RedumpSystem.SonyPlayStation4,
- RedumpSystem.SonyPlayStation5,
- RedumpSystem.SonyPlayStationPortable,
- ];
-
- ///
- /// RedumpSystem values that are considered XGD
- ///
- private static readonly RedumpSystem?[] _xgdSystems =
- [
- RedumpSystem.MicrosoftXbox,
- RedumpSystem.MicrosoftXbox360,
- RedumpSystem.MicrosoftXboxOne,
- RedumpSystem.MicrosoftXboxSeriesXS,
- ];
-
- ///
- /// Check that all systems with reversed ringcodes are marked properly
- ///
- /// RedumpSystem value to check
- /// The expected value to come from the check
- [Theory]
- [MemberData(nameof(GenerateReversedRingcodeSystemsTestData))]
- public void HasReversedRingcodesTest(RedumpSystem? redumpSystem, bool expected)
- {
- bool actual = redumpSystem.HasReversedRingcodes();
- Assert.Equal(expected, actual);
- }
-
- ///
- /// Check that all audio systems are marked properly
- ///
- /// RedumpSystem value to check
- /// The expected value to come from the check
- [Theory]
- [MemberData(nameof(GenerateAudioSystemsTestData))]
- public void IsAudioTest(RedumpSystem? redumpSystem, bool expected)
- {
- bool actual = redumpSystem.IsAudio();
- Assert.Equal(expected, actual);
- }
-
- ///
- /// Check that all marker systems are marked properly
- ///
- /// RedumpSystem value to check
- /// The expected value to come from the check
- [Theory]
- [MemberData(nameof(GenerateMarkerSystemsTestData))]
- public void IsMarkerTest(RedumpSystem? redumpSystem, bool expected)
- {
- bool actual = redumpSystem.IsMarker();
- Assert.Equal(expected, actual);
- }
-
- ///
- /// Check that all XGD systems are marked properly
- ///
- /// RedumpSystem value to check
- /// The expected value to come from the check
- [Theory]
- [MemberData(nameof(GenerateXGDSystemsTestData))]
- public void IsXGDTest(RedumpSystem? redumpSystem, bool expected)
- {
- bool actual = redumpSystem.IsXGD();
- Assert.Equal(expected, actual);
- }
-
- ///
- /// Generate a test set of RedumpSystem values that are considered Audio
- ///
- /// MemberData-compatible list of RedumpSystem values
- public static List