def get_test_ui_and_cmd(self,args=()): ui = UI(args=args) cmd = help.help(ui) ui.set_command(cmd) return ui, cmd
def get_test_ui_and_cmd(self): ui = UI() cmd = commands.commands(ui) ui.set_command(cmd) return ui, cmd
def get_test_ui_and_cmd(self,args=()): ui = UI(args=args) cmd = quickstart.quickstart(ui) ui.set_command(cmd) return ui, cmd
def get_test_ui_and_cmd(self,args=(), options=()): ui = UI(args=args, options=options) cmd = release.release(ui) ui.set_command(cmd) return ui, cmd
def get_test_ui_and_cmd(self,args=(), options=()): ui = UI(args=args, options=options) cmd = status.status(ui) ui.set_command(cmd) return ui, cmd