At least my specs pass
When in doubt always write just any test. If it passes then you’re good to do into production with your fully tested to hell code.
require 'spec_helper'
RSpec.describe 'so much specs' do
it 'represents the level of care I put into my code' do
expect { some bullshit }.to raise_error
end
end