📁 File Manager Pro
v10.0.3 | PHP: 7.4.15
Server: Apache/2.4.25 (Debian)
2026-07-02 11:04:00
📂
/ (Root)
/
usr
/
lib
/
python3
/
dist-packages
/
certbot
/
plugins
📍 /usr/lib/python3/dist-packages/certbot/plugins
🔄 Refresh
✏️
Editing: null_test.py
Read Only
"""Tests for certbot.plugins.null.""" import unittest import six import mock class InstallerTest(unittest.TestCase): """Tests for certbot.plugins.null.Installer.""" def setUp(self): from certbot.plugins.null import Installer self.installer = Installer(config=mock.MagicMock(), name="null") def test_it(self): self.assertTrue(isinstance(self.installer.more_info(), six.string_types)) self.assertEqual([], self.installer.get_all_names()) self.assertEqual([], self.installer.supported_enhancements()) if __name__ == "__main__": unittest.main() # pragma: no cover
💾 Save Changes
❌ Cancel