Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove a case that is not negative examples in the capybara sheet (#2122
) The above case is a new Bad case added by #1798 . It is designated as Bad due to performance issues, but it is not actually a Negative example. In practice, the following would be the same test: ```ruby expect(page).to have_button('Save') !expect(page).to have_button('Save') ``` This is not an example that will appear on the capybara cheat sheet, because it is a problem with how RSpec is written. I think it should be removed because it creates confusion.
- Loading branch information