Installer: Implement multi network selector
Change-Id: I52227a0f0e964ac48cb378ead077fad941c3315c
diff --git a/core/installer/app_test.go b/core/installer/app_test.go
index 7e64d50..5051cc9 100644
--- a/core/installer/app_test.go
+++ b/core/installer/app_test.go
@@ -373,3 +373,19 @@
t.Log(string(r))
}
}
+
+func TestDodoApp(t *testing.T) {
+ contents, err := valuesTmpls.ReadFile("values-tmpl/dodo-app.cue")
+ if err != nil {
+ t.Fatal(err)
+ }
+ app, err := NewCueEnvApp(CueAppData{
+ "base.cue": []byte(cueBaseConfig),
+ "app.cue": []byte(contents),
+ "global.cue": []byte(cueEnvAppGlobal),
+ })
+ if err != nil {
+ t.Fatal(err)
+ }
+ t.Log(app.Schema())
+}