Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'certbot/plugins/null_test.py')
-rw-r--r--certbot/plugins/null_test.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/certbot/plugins/null_test.py b/certbot/plugins/null_test.py
deleted file mode 100644
index d5de33fb3..000000000
--- a/certbot/plugins/null_test.py
+++ /dev/null
@@ -1,22 +0,0 @@
-"""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