stub cli_test

This commit is contained in:
Jakub Warmuz 2015-04-22 07:20:45 +00:00
parent 048876a1df
commit 0e3504cecc
No known key found for this signature in database
GPG key ID: 2A7BAD3A489B52EA
2 changed files with 12 additions and 1 deletions

View file

@ -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

View 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()