aboutsummaryrefslogtreecommitdiff
path: root/x509roots/fallback/bundle/roots_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'x509roots/fallback/bundle/roots_test.go')
-rw-r--r--x509roots/fallback/bundle/roots_test.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/x509roots/fallback/bundle/roots_test.go b/x509roots/fallback/bundle/roots_test.go
new file mode 100644
index 0000000..04ba9db
--- /dev/null
+++ b/x509roots/fallback/bundle/roots_test.go
@@ -0,0 +1,18 @@
+// Copyright 2025 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package bundle
+
+import (
+ "crypto/x509"
+ "testing"
+)
+
+func TestRootsCanBeParsed(t *testing.T) {
+ for root := range Roots() {
+ if _, err := x509.ParseCertificate(root.Certificate); err != nil {
+ t.Fatalf("Could not parse root certificate: %v", err)
+ }
+ }
+}