diff --git a/src/Cli/__Tests/StellaOps.Cli.Tests/Commands/MigrationCommandHandlersTests.cs b/src/Cli/__Tests/StellaOps.Cli.Tests/Commands/MigrationCommandHandlersTests.cs new file mode 100644 index 000000000..8c1f077a9 --- /dev/null +++ b/src/Cli/__Tests/StellaOps.Cli.Tests/Commands/MigrationCommandHandlersTests.cs @@ -0,0 +1,14 @@ +using System.Threading.Tasks; +using StellaOps.Cli.Services; +using Xunit; + +namespace StellaOps.Cli.Tests.Commands; + +public class MigrationCommandHandlersTests +{ + [Fact] + public void Registry_Has_All_Modules() + { + Assert.Equal(6, MigrationModuleRegistry.Modules.Count); + } +}