mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 07:42:08 -04:00
stub cli_test
This commit is contained in:
parent
048876a1df
commit
0e3504cecc
2 changed files with 12 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
11
letsencrypt/client/tests/cli_test.py
Normal file
11
letsencrypt/client/tests/cli_test.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import unittest
|
||||
|
||||
|
||||
class CLITest(unittest.TestCase):
|
||||
|
||||
def test_it(self):
|
||||
from letsencrypt.client import cli
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
Loading…
Reference in a new issue