mirror of
https://github.com/certbot/certbot.git
synced 2026-07-28 08:05:31 +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__":
|
||||
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