def main(): args, otherthings, parser = parse_known_args() if len(otherthings) > 0: compile_files(otherthings, args.memory) elif args.update: return update() elif args.problem: return problem() else: parser.print_usage() print('No filename passed')
def test_update(self, mock_sys_cmd, mock_check_exec_installed): update() mock_check_exec_installed.assert_called_once_with(['pip']) mock_sys_cmd.assert_called_once_with('pip install --upgrade universal')