Files
abra/pkg/upstream/stack/loader_test.go
decentral1se 94624bb16d
All checks were successful
continuous-integration/drone/push Build is passing
WIP: feat: use compose-go
See #492
2026-04-04 19:39:24 +02:00

27 lines
550 B
Go

package stack_test // https://github.com/docker/cli/blob/master/cli/command/stack/loader/loader.go
import (
"testing"
"coopcloud.tech/abra/pkg/app"
"coopcloud.tech/abra/pkg/test"
)
func TestSkipInterpolation(t *testing.T) {
test.Setup()
t.Cleanup(func() { test.Teardown() })
a, err := app.Get(test.AppName)
if err != nil {
t.Fatal(err)
}
_, err = a.Recipe.GetComposeConfig()
if err != nil {
t.Fatal(err)
}
// TODO: ensure compose has a port with no interpolated value
// TODO: ensure compose has port with interpolated value
}