Files
opencloud/ocis-pkg/config/config_test.go
2021-11-09 00:50:27 +01:00

18 lines
228 B
Go

package config
import (
"fmt"
"testing"
"gopkg.in/yaml.v2"
)
func TestDefaultConfig(t *testing.T) {
cfg := DefaultConfig()
yBytes, err := yaml.Marshal(cfg)
if err != nil {
panic(err)
}
fmt.Println(string(yBytes))
}