Start abstracting away the ACME provider (#830)
* Start abstracting away the ACME provider * Move ACME to interface with sub-package implementations * Addressing comments * Library -> Provider * Missed a couple of Library -> Provider * One more Library -> Provider * remove constants
This commit is contained in:
15
api/server/acme/autocert/autocert_test.go
Normal file
15
api/server/acme/autocert/autocert_test.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package autocert
|
||||
|
||||
import (
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestAutocert(t *testing.T) {
|
||||
l := New()
|
||||
if _, ok := l.(*autocertProvider); !ok {
|
||||
t.Error("New() didn't return an autocertProvider")
|
||||
}
|
||||
if _, err := l.NewListener(); err != nil {
|
||||
t.Error(err.Error())
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user