11 lines
206 B
Python
11 lines
206 B
Python
|
from unittest import TestCase
|
||
|
|
||
|
|
||
|
from pyicloud.cmdline import main
|
||
|
|
||
|
|
||
|
class SanityTestCase(TestCase):
|
||
|
def test_basic_sanity(self):
|
||
|
with self.assertRaises(SystemExit):
|
||
|
main(['--help'])
|