1
0
mirror of https://github.com/fumiama/terasu-cloudflared.git synced 2026-06-08 20:10:25 +08:00
Files
terasu-cloudflared/vendor/github.com/certifi/gocertifi/certifi_test.go
2018-07-19 15:02:24 -05:00

11 lines
195 B
Go

package gocertifi
import "testing"
func TestGetCerts(t *testing.T) {
cert_pool, err := CACerts()
if (cert_pool == nil) || (err != nil) {
t.Errorf("Failed to return the certificates.")
}
}