mirror of
https://github.com/kairos-io/kairos-agent.git
synced 2025-07-20 02:49:21 +00:00
This changeset also adds a `config_url` and `options` keyword in the c3os config. Along with that the config logic is changed so the configuration is taken also from boot commands and merged in the final installed config file.
14 lines
199 B
Go
14 lines
199 B
Go
package machine_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestInstaller(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Machine Suite")
|
|
}
|