s/Let's Encrypt/Certbot certbot-compatibility-test

This commit is contained in:
Brad Warren
2016-04-13 16:59:37 -07:00
parent 4fab8751b2
commit 0ce45a77f9
7 changed files with 14 additions and 14 deletions
@@ -1 +1 @@
"""Let's Encrypt compatibility test"""
"""Certbot compatibility test"""
@@ -1 +1 @@
"""Let's Encrypt compatibility test configurators"""
"""Certbot compatibility test configurators"""
@@ -1 +1 @@
"""Let's Encrypt compatibility test Apache configurators"""
"""Certbot compatibility test Apache configurators"""
@@ -1,5 +1,5 @@
"""Let's Encrypt compatibility test errors"""
"""Certbot compatibility test errors"""
class Error(Exception):
"""Generic Let's Encrypt compatibility test error"""
"""Generic Certbot compatibility test error"""
@@ -1,4 +1,4 @@
"""Let's Encrypt compatibility test interfaces"""
"""Certbot compatibility test interfaces"""
import zope.interface
import certbot.interfaces
@@ -7,7 +7,7 @@ import certbot.interfaces
class IPluginProxy(zope.interface.Interface):
"""Wraps a Let's Encrypt plugin"""
"""Wraps a Certbot plugin"""
http_port = zope.interface.Attribute(
"The port to connect to on localhost for HTTP traffic")
@@ -38,15 +38,15 @@ class IPluginProxy(zope.interface.Interface):
class IAuthenticatorProxy(IPluginProxy, certbot.interfaces.IAuthenticator):
"""Wraps a Let's Encrypt authenticator"""
"""Wraps a Certbot authenticator"""
class IInstallerProxy(IPluginProxy, certbot.interfaces.IInstaller):
"""Wraps a Let's Encrypt installer"""
"""Wraps a Certbot installer"""
def get_all_names_answer():
"""Returns all names that should be found by the installer"""
class IConfiguratorProxy(IAuthenticatorProxy, IInstallerProxy):
"""Wraps a Let's Encrypt configurator"""
"""Wraps a Certbot configurator"""
@@ -1,4 +1,4 @@
"""Tests Let's Encrypt plugins against different server configurations."""
"""Tests Certbot plugins against different server configurations."""
import argparse
import filecmp
import functools
@@ -25,7 +25,7 @@ from certbot_compatibility_test.configurators.apache import apache24
DESCRIPTION = """
Tests Let's Encrypt plugins against different server configuratons. It is
Tests Certbot plugins against different server configuratons. It is
assumed that Docker is already installed. If no test types is specified, all
tests that the plugin supports are performed.
+2 -2
View File
@@ -33,9 +33,9 @@ docs_extras = [
setup(
name='certbot-compatibility-test',
version=version,
description="Compatibility tests for Let's Encrypt client",
description="Compatibility tests for Certbot",
url='https://github.com/letsencrypt/letsencrypt',
author="Let's Encrypt Project",
author="Electronic Frontier Foundation",
author_email='client-dev@letsencrypt.org',
license='Apache License 2.0',
classifiers=[