#compdef ns-dev-test

# AUTOMATICALLY GENERATED by `shtab`


_shtab_tyro_ns_dev_test_commands() {
  local _commands=(
    
  )
  _describe 'ns-dev-test commands' _commands
}

_shtab_tyro_ns_dev_test_options=(
  {-h,--help}"[show this help message and exit]:help:"
  {--continue-on-fail,--no-continue-on-fail}"[Whether or not to continue running actions commands if the current one fails (default\: False)]:continue-on-fail:"
)


_shtab_tyro_ns_dev_test() {
  local context state line curcontext="$curcontext" one_or_more='(-)*' remainder='(*)'

  if ((${_shtab_tyro_ns_dev_test_options[(I)${(q)one_or_more}*]} + ${_shtab_tyro_ns_dev_test_options[(I)${(q)remainder}*]} == 0)); then  # noqa: E501
    _shtab_tyro_ns_dev_test_options+=(': :_shtab_tyro_ns_dev_test_commands' '*::: :->ns-dev-test')
  fi
  _arguments -C -s $_shtab_tyro_ns_dev_test_options

  case $state in
    ns-dev-test)
      words=($line[1] "${words[@]}")
      (( CURRENT += 1 ))
      curcontext="${curcontext%:*:*}:_shtab_tyro_ns_dev_test-$line[1]:"
      case $line[1] in
        
      esac
  esac
}



typeset -A opt_args

if [[ $zsh_eval_context[-1] == eval ]]; then
  # eval/source/. command, register function for later
  compdef _shtab_tyro_ns_dev_test -N ns-dev-test
else
  # autoload from fpath, call function directly
  _shtab_tyro_ns_dev_test "$@"
fi

