aboutsummaryrefslogtreecommitdiff
path: root/internal/config/config_test.go
blob: fdf04dfdba38f3cd495b9f56398d590b7ca2d591 (plain)
1
2
3
4
5
6
7
8
9
10
11
package config

import (
	"testing"
)

func TestLoad(t *testing.T) {
	if _, err := Load("../../config.dhall"); err != nil {
		t.Error(err)
	}
}