summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/tools/sslutils/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/tools/sslutils/__init__.py')
-rw-r--r--testing/web-platform/tests/tools/sslutils/__init__.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/testing/web-platform/tests/tools/sslutils/__init__.py b/testing/web-platform/tests/tools/sslutils/__init__.py
new file mode 100644
index 000000000..e46be851d
--- /dev/null
+++ b/testing/web-platform/tests/tools/sslutils/__init__.py
@@ -0,0 +1,9 @@
+import openssl
+import pregenerated
+from base import NoSSLEnvironment
+from openssl import OpenSSLEnvironment
+from pregenerated import PregeneratedSSLEnvironment
+
+environments = {"none": NoSSLEnvironment,
+ "openssl": OpenSSLEnvironment,
+ "pregenerated": PregeneratedSSLEnvironment}