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,8 +14,9 @@
Main shell for parsing arguments directed toward Craton.
"""
def main():
return 0
if __name__ == "__main__":
main()
main()

View File

@@ -14,4 +14,4 @@
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):
"""Verify that cratonclient shell main returns as expected."""
self.assertEqual(main.main(),0)
self.assertEqual(main.main(), 0)