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