We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description of problem:
triangle application help is application mode which should:
--help|-h
Version-Release number of selected component (if applicable): triangle v1.0.0 https://github.com/freznicek/qa-crashcourse/releases/tag/v1.0.0 executed on updated Debian Jessie amd64 / Fedora 24 x86_64.
How reproducible: Always (100%)
Steps to Reproduce:
Actual results: Triangle application treats help operation as invalid according it's exit code. Moreover --help is not listed in the help text:
--help
$ ./triangle -h; echo $? triangle <a-side-length> <b-side-length> <c-side-length> usage: triangle validity tester, where <?-side-length> is length of a triangle side. returns ecode of 0 / 1 / 2 with meaning: valid / invalid / input error 2 $ ./triangle --help; echo $? triangle <a-side-length> <b-side-length> <c-side-length> usage: triangle validity tester, where <?-side-length> is length of a triangle side. returns ecode of 0 / 1 / 2 with meaning: valid / invalid / input error 2 $ ./triangle -h | grep -F "\-\-help"; echo $? triangle <a-side-length> <b-side-length> <c-side-length> usage: triangle validity tester, where <?-side-length> is length of a triangle side. returns ecode of 0 / 1 / 2 with meaning: valid / invalid / input error 1
Expected results: The expected exit codes are 0, 0 and 0, i.e. help is valid application operation and listed in the help text.
Additional info:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description of problem:
triangle application help is application mode which should:
--help|-h
should be listed in the help itself)Version-Release number of selected component (if applicable):
triangle v1.0.0 https://github.com/freznicek/qa-crashcourse/releases/tag/v1.0.0
executed on updated Debian Jessie amd64 / Fedora 24 x86_64.
How reproducible:
Always (100%)
Steps to Reproduce:
Actual results:
Triangle application treats help operation as invalid according it's exit code. Moreover
--help
is not listed in the help text:Expected results:
The expected exit codes are 0, 0 and 0, i.e. help is valid application operation and listed in the help text.
Additional info:
The text was updated successfully, but these errors were encountered: