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
We currently have experimental support for bash (see https://github.com/orangemug/readme-tester/tree/master/test/examples/bash)
We include https://github.com/orangemug/bash-assert which allows for variable testing
out=`some-command` assert $out == "some output"
Unix exit codes tests
some-command assert $? == 0
stdout/stderr tests
stdout/stderr
echo "foo" > /tmp/foo-stdout.txt ## >>/tmp/foo-stdout.txt ## foo ## <<
Are there any opinions of the current API?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We currently have experimental support for bash (see https://github.com/orangemug/readme-tester/tree/master/test/examples/bash)
We include https://github.com/orangemug/bash-assert which allows for variable testing
Unix exit codes tests
stdout/stderr
testsAre there any opinions of the current API?
The text was updated successfully, but these errors were encountered: