rubocop-rspec icon indicating copy to clipboard operation
rubocop-rspec copied to clipboard

Cop idea: like a `RSpec/Capybara/FindElementValueEq` cop

Open ydah opened this issue 2 years ago • 0 comments

original issue: https://github.com/rubocop/rubocop-rspec/issues/1342#issue-1322935208

# bad
expect(find('input').value).to eq('foobar')
# good
expect(page).to have_field(with: 'foobar')

ydah avatar Aug 02 '22 21:08 ydah