nginx-proxy-manager-zh/backend/internal/config/vars_test.go

15 lines
232 B
Go
Raw Normal View History

2023-07-30 23:49:11 -04:00
package config
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestAcmeshGetWellknown(t *testing.T) {
a := acmesh{
Home: "/data/.acme.sh",
}
assert.Equal(t, "/data/.acme.sh/.well-known", a.GetWellknown())
}