fix(installer): harden DownloadAndExtractStep per review

This commit is contained in:
Mika Kuns
2026-04-15 09:43:27 +02:00
parent c1e330164e
commit ea32a74baa
2 changed files with 16 additions and 3 deletions

View File

@@ -78,6 +78,7 @@ public sealed class DownloadAndExtractStepTests : IDisposable
Assert.True(result.Success, result.ErrorMessage);
Assert.Equal("hello-app", File.ReadAllText(Path.Combine(_installDir, "app", "a.txt")));
Assert.Equal("hello-worker", File.ReadAllText(Path.Combine(_installDir, "worker", "b.txt")));
Assert.Equal("0.1.0", ctx.InstalledVersion);
}
[Fact]