Esempio n. 1
0
 def captureOutput(self, command):
     """
     Runs the specified client command, capturing the output written
     to stdout. This is returned as a string.
     """
     stdout = sys.stdout
     sys.stdout = StringIO.StringIO()
     try:
         cli.client_main(command.split())
         output = sys.stdout.getvalue()
     finally:
         sys.stdout.close()
         sys.stdout = stdout
     return output
Esempio n. 2
0
 def setUp(self):
     # initialize the client parser
     self.parser = StubArgumentParser(self)
     cli.client_main(self.parser)
Esempio n. 3
0
 def testCliNoInput(self):
     cli.client_main(self.parser)
Esempio n. 4
0
 def setUp(self):
     # initialize the client parser
     self.parser = StubArgumentParser(self)
     cli.client_main(self.parser)
Esempio n. 5
0
 def testCliNoInput(self):
     parser = StubArgumentParser(self)
     cli.client_main(parser)
     parser.assertParseArgsCountEquals(1)
     parser.assertHelpCountEquals(1)
Esempio n. 6
0
 def testCliNoInput(self):
     cli.client_main(self.parser)