package config

import (
	"testing"

	"github.com/pkg/errors"
)

func TestConfigLoad(t *testing.T) {
	filepath := "./testdata/config.yml"

	_, err := NewFromFile(filepath)
	if err != nil {
		t.Fatal(errors.WithStack(err))
	}
}