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
Write tabular matchers to wrap the rspec output matchers https://relishapp.com/rspec/rspec-expectations/docs/built-in-matchers/output-matcher
The output matchers are used like this:
specify { expect { subject }.to output('hi').to_stdout } specify { expect { subject }.to output('hi').to_stderr }
And the tabular wrappers could be written like this:
input :var1, :var2 output_stdout_with :foo, :bar, 'foobar' output_stderr_with :dead, :beef, 'error'
I am not sure if the better form is:
Or if these should be both be available and aliased.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Write tabular matchers to wrap the rspec output matchers
https://relishapp.com/rspec/rspec-expectations/docs/built-in-matchers/output-matcher
The output matchers are used like this:
And the tabular wrappers could be written like this:
I am not sure if the better form is:
Or if these should be both be available and aliased.
The text was updated successfully, but these errors were encountered: