mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-29 07:58:55 -06:00
18 lines
228 B
Go
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))
|
|
}
|