Exemplo 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
Exemplo n.º 2
0
 def setUp(self):
     # initialize the client parser
     self.parser = StubArgumentParser(self)
     cli.client_main(self.parser)
Exemplo n.º 3
0
 def testCliNoInput(self):
     cli.client_main(self.parser)
Exemplo n.º 4
0
 def setUp(self):
     # initialize the client parser
     self.parser = StubArgumentParser(self)
     cli.client_main(self.parser)
Exemplo n.º 5
0
 def testCliNoInput(self):
     parser = StubArgumentParser(self)
     cli.client_main(parser)
     parser.assertParseArgsCountEquals(1)
     parser.assertHelpCountEquals(1)
Exemplo n.º 6
0
 def testCliNoInput(self):
     cli.client_main(self.parser)