This commit is contained in:
Chris Spencer
2016-06-21 09:56:56 -05:00
3 changed files with 5 additions and 3 deletions

View File

@@ -14,6 +14,7 @@
Main shell for parsing arguments directed toward Craton. Main shell for parsing arguments directed toward Craton.
""" """
def main(): def main():
return 0 return 0

View File

@@ -14,4 +14,4 @@
Command-line interface to the OpenStack Craton API V1. Command-line interface to the OpenStack Craton API V1.
""" """
#TODO (cmspence): from cratonclient.v1 import client # TODO (cmspence): from cratonclient.v1 import client

View File

@@ -21,4 +21,5 @@ class TestMainShell(base.TestCase):
def test_main_returns_successfully(self): def test_main_returns_successfully(self):
"""Verify that cratonclient shell main returns as expected.""" """Verify that cratonclient shell main returns as expected."""
self.assertEqual(main.main(),0)
self.assertEqual(main.main(), 0)