aboutsummaryrefslogtreecommitdiff
path: root/cmd/_old/sanguisuga/config_test.go
blob: f7d0f8c816fde6546836a391a6bd3d6d52d02cb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package main

import (
	"testing"

	"go.jetpack.io/tyson"
)

func TestDefaultConfig(t *testing.T) {
	var c Config
	if err := tyson.Unmarshal("./config.default.ts", &c); err != nil {
		t.Fatal(err)
	}
}