9 lines
206 B
Python
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'])
|