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
The new RSpec/NoExpectationExample cop flags pending and skipped examples, even though it seems the intent was to allow them (ed7f7c0).
RSpec/NoExpectationExample
For example, this is flagged:
it "decodes ISSN barcodes" do pending "Test scan ISSN" end
The text was updated successfully, but these errors were encountered:
Fix a false positive for RSpec/NoExpectationExample with pending us…
92c95c1
…ing `skip` or `pending` inside an example Fix: rubocop#1388
skip
pending
Successfully merging a pull request may close this issue.
The new
RSpec/NoExpectationExample
cop flags pending and skipped examples, even though it seems the intent was to allow them (ed7f7c0).For example, this is flagged:
The text was updated successfully, but these errors were encountered: