Pattern: Missing first argument for example group
Issue: -
Checks that the first argument to an example group is not empty.
# bad
describe do
end
RSpec.describe do
end
# good
describe TestedClass do
end
describe "A feature example" do
end
Pattern: Missing first argument for example group
Issue: -
Checks that the first argument to an example group is not empty.
# bad
describe do
end
RSpec.describe do
end
# good
describe TestedClass do
end
describe "A feature example" do
end