mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-04-29 18:42:28 +00:00
15 lines
232 B
Go
15 lines
232 B
Go
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())
|
|
}
|