/usr/share/cagefs-skeleton/lib/python3.9/site-packages/certbot/_internal/tests/plugins
"""Tests for certbot._internal.plugins.null.""" import sys import unittest from unittest import mock import pytest class InstallerTest(unittest.TestCase): """Tests for certbot._internal.plugins.null.Installer.""" def setUp(self): from certbot._internal.plugins.null import Installer self.installer = Installer(config=mock.MagicMock(), name="null") def test_it(self): assert isinstance(self.installer.more_info(), str) assert [] == self.installer.get_all_names() assert [] == self.installer.supported_enhancements() if __name__ == "__main__": sys.exit(pytest.main(sys.argv[1:] + [__file__])) # pragma: no cover
.
Edit
..
Edit
__init__.py
Edit
__pycache__
Edit
common_test.py
Edit
disco_test.py
Edit
dns_common_test.py
Edit
enhancements_test.py
Edit
manual_test.py
Edit
null_test.py
Edit
selection_test.py
Edit
standalone_test.py
Edit
storage_test.py
Edit
util_test.py
Edit
webroot_test.py
Edit