Is the RSpec DSL making your tests harder to read?
You're working on a Ruby app that uses RSpec. You push a commit, the CI fails. The output points to this test.
it 'has attributes from params' do
expect(subject).to have_attributes(params)
end
Is this a good test?
I suppose it's one line method?
...
ljones140.hashnode.dev7 min read