feat: add selected update installs and polished UI

This commit is contained in:
2026-05-03 23:04:30 +02:00
parent 137290e3d7
commit e8d4d2e400
4 changed files with 211 additions and 13 deletions

View File

@@ -0,0 +1,11 @@
package gui
import "testing"
func TestShellPackageList(t *testing.T) {
got := shellPackageList([]string{"vapoursynth", "libastal-4-git", "vapoursynth", "bad package"})
want := "'vapoursynth' 'libastal-4-git'"
if got != want {
t.Fatalf("shellPackageList() = %q, want %q", got, want)
}
}