stub cli_test

This commit is contained in:
Jakub Warmuz
2015-04-22 07:20:45 +00:00
parent 048876a1df
commit 0e3504cecc
2 changed files with 12 additions and 1 deletions
+1 -1
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
+11
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()