mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-21 10:18:21 -05:00
b07b5a1149
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
17 lines
345 B
Go
17 lines
345 B
Go
package config_test
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
"github.com/opencloud-eu/opencloud/pkg/config"
|
|
"gopkg.in/yaml.v2"
|
|
)
|
|
|
|
var _ = Describe("Config", func() {
|
|
It("Success generating the default config", func() {
|
|
cfg := config.DefaultConfig()
|
|
_, err := yaml.Marshal(cfg)
|
|
Expect(err).To(BeNil())
|
|
})
|
|
})
|