aboutsummaryrefslogtreecommitdiff
path: root/cmd/acme/config_test.go
blob: 0aa473ae59bee7a5ade648aab797f910100dc4ac (plain)
1
2
3
4
5
6
7
8
9
10
11
package main

import (
	"fmt"
	"testing"
)

func TestReadConfig(t *testing.T) {
	a := ReadConfig("../../acme.toml")
	t.Log(fmt.Sprintf("%+v\n", a))
}