mirror of
https://github.com/certbot/certbot.git
synced 2026-08-03 20:12:42 +02:00
stub cli_test
This commit is contained in:
@@ -361,4 +361,4 @@ def main(): # pylint: disable=too-many-branches, too-many-statements
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
sys.exit(main())
|
sys.exit(main()) # pragma: no cover
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
import unittest
|
||||||
|
|
||||||
|
|
||||||
|
class CLITest(unittest.TestCase):
|
||||||
|
|
||||||
|
def test_it(self):
|
||||||
|
from letsencrypt.client import cli
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
unittest.main()
|
||||||
Reference in New Issue
Block a user