stabilizaiton work - projects rework for maintenanceability and ui livening
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System.Linq;
|
||||
using StellaOps.DistroIntel;
|
||||
using Xunit;
|
||||
|
||||
namespace StellaOps.DistroIntel.Tests;
|
||||
|
||||
public sealed class DistroMappingsCoverageTests
|
||||
{
|
||||
[Fact]
|
||||
public void DistroMappings_Derivatives_HaveNoDuplicateKeys()
|
||||
{
|
||||
var duplicates = DistroMappings.Derivatives
|
||||
.GroupBy(d => (d.CanonicalDistro, d.DerivativeDistro, d.MajorRelease))
|
||||
.Where(g => g.Count() > 1)
|
||||
.ToList();
|
||||
|
||||
Assert.Empty(duplicates);
|
||||
}
|
||||
}
|
||||
@@ -4,5 +4,5 @@ Source of truth: `docs/implplan/SPRINT_20260130_002_Tools_csproj_remediation_sol
|
||||
|
||||
| Task ID | Status | Notes |
|
||||
| --- | --- | --- |
|
||||
| REMED-05 | TODO | Remediation checklist: docs/implplan/audits/csproj-standards/remediation/checklists/src/__Libraries/__Tests/StellaOps.DistroIntel.Tests/StellaOps.DistroIntel.Tests.md. |
|
||||
| REMED-05 | BLOCKED | Remediation checklist: docs/implplan/audits/csproj-standards/remediation/checklists/src/__Libraries/__Tests/StellaOps.DistroIntel.Tests/StellaOps.DistroIntel.Tests.md. Missing module AGENTS.md in src/__Libraries/__Tests/StellaOps.DistroIntel.Tests. |
|
||||
| REMED-06 | DONE | SOLID review notes captured for SPRINT_20260130_002. |
|
||||
|
||||
Reference in New Issue
Block a user