pyicloud/tests/test_sanity.py
Quentin POLLET 672a4ea2fe Fix tests
2020-02-05 20:37:14 +01:00

9 lines
206 B
Python

from unittest2 import TestCase
from pyicloud.cmdline import main
class SanityTestCase(TestCase):
def test_basic_sanity(self):
with self.assertRaises(SystemExit):
main(['--help'])