test(cli): add placeholder migration command handler test

This commit is contained in:
StellaOps Bot
2025-12-06 16:20:56 +00:00
parent 849a70f9d1
commit 23e463e346

View File

@@ -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);
}
}