Pattern: Malformed first describe
argument
Issue: -
Checks that the first argument to the top level describe is a constant.
# bad
describe 'Do something' do
end
# good
describe TestedClass do
end
describe "A feature example", type: :feature do
end