def per_task_partial_or_invalid_flags_print_all_flags(self): for flag in ('--arg1', '--otherarg'): for given in ('--ar', '--nope'): assert_contains( _complete('multiple_args {0}'.format(given), 'foo'), flag )
def bare_double_dash_shows_only_long_core_options(self): output = _complete('--') assert_contains(output, '--no-dedupe') assert_not_contains(output, '-V')
def top_level_with_dash_means_core_options(self): output = _complete('-') # No point mirroring all core options, just spot check a few for flag in ('--no-dedupe', '-d', '--debug', '-V', '--version'): assert_contains(output, "{0}\n".format(flag))
def task_name_completion_includes_aliases(self): for name in ('z\n', 'toplevel'): assert_contains(_complete('', 'alias_sorting'), name)
def core_partial_or_invalid_flags_print_all_flags(self): for flag in ('--echo', '--complete'): for given in ('--e', '--nope'): assert_contains(_complete(given), flag)
def core_bool_flags_have_task_name_completion(self): assert_contains(_complete('--echo', 'foo'), 'mytask')
def flag_completion_includes_inverse_booleans(self): output = _complete('basic_bool -', 'foo') assert_contains(output, '--no-mybool')
def per_task_flags_complete_with_single_dashes(self): for flag in ('--name', '-n'): assert_contains(_complete('print_name -', 'integration'), flag)
def tasks_with_positional_args_complete_with_flags(self): # Because otherwise completing them is invalid anyways. # NOTE: this currently duplicates another test because this test cares # about a specific detail. output = _complete('print_name --', 'integration') assert_contains(output, '--name')
def per_task_flags_complete_with_double_dashes(self): output = _complete('print_name --', 'integration') assert_contains(output, '--name') assert_not_contains(output, '-n\n') # newline because -n is in --name
def task_name_completion_includes_tasks_already_seen(self): # Because it's valid to call the same task >1 time. assert_contains(_complete('print_foo', 'integration'), 'print_foo')
def task_names_only_complete_other_task_names(self): # Because only tokens starting with a dash should result in options. assert_contains(_complete('print_foo', 'integration'), 'print_name')
def per_task_bool_flags_have_task_name_completion(self): assert_contains(_complete('basic_bool --mybool', 'foo'), 'mytask')
def per_task_partial_or_invalid_flags_print_all_flags(self): for flag in ('--arg1', '--otherarg'): for given in ('--ar', '--nope'): assert_contains( _complete('multiple_args {0}'.format(given), 'foo'), flag)