Merge branch 'rubocop-empty-example-group' into 'master'
Enable the RSpec/EmptyExampleGroup cop See merge request !11497
This commit is contained in:
commit
36ede00876
6 changed files with 33 additions and 37 deletions
|
@ -969,6 +969,12 @@ RSpec/DescribeSymbol:
|
|||
RSpec/DescribedClass:
|
||||
Enabled: true
|
||||
|
||||
# Configuration parameters: CustomIncludeMethods.
|
||||
RSpec/EmptyExampleGroup:
|
||||
Enabled: true
|
||||
CustomIncludeMethods:
|
||||
- run_permission_checks
|
||||
|
||||
# Checks for long example.
|
||||
RSpec/ExampleLength:
|
||||
Enabled: false
|
||||
|
|
|
@ -10,11 +10,6 @@
|
|||
RSpec/BeforeAfterAll:
|
||||
Enabled: false
|
||||
|
||||
# Offense count: 15
|
||||
# Configuration parameters: CustomIncludeMethods.
|
||||
RSpec/EmptyExampleGroup:
|
||||
Enabled: false
|
||||
|
||||
# Offense count: 233
|
||||
RSpec/EmptyLineAfterFinalLet:
|
||||
Enabled: false
|
||||
|
|
|
@ -30,13 +30,6 @@ describe 'Issues', feature: true do
|
|||
it 'opens new issue popup' do
|
||||
expect(page).to have_content("Issue ##{issue.iid}")
|
||||
end
|
||||
|
||||
describe 'fill in' do
|
||||
before do
|
||||
fill_in 'issue_title', with: 'bug 345'
|
||||
fill_in 'issue_description', with: 'bug description'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe 'Editing issue assignee' do
|
||||
|
@ -557,15 +550,6 @@ describe 'Issues', feature: true do
|
|||
expect(page).to have_content milestone.title
|
||||
end
|
||||
end
|
||||
|
||||
describe 'removing assignee' do
|
||||
let(:user2) { create(:user) }
|
||||
|
||||
before do
|
||||
issue.assignees << user2
|
||||
issue.save
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe 'new issue' do
|
||||
|
|
|
@ -5,9 +5,6 @@ describe ProjectSnippet, models: true do
|
|||
it { is_expected.to belong_to(:project) }
|
||||
end
|
||||
|
||||
describe "Mass assignment" do
|
||||
end
|
||||
|
||||
describe "Validation" do
|
||||
it { is_expected.to validate_presence_of(:project) }
|
||||
end
|
||||
|
|
|
@ -7,9 +7,6 @@ describe ProtectedBranch, models: true do
|
|||
it { is_expected.to belong_to(:project) }
|
||||
end
|
||||
|
||||
describe "Mass assignment" do
|
||||
end
|
||||
|
||||
describe 'Validation' do
|
||||
it { is_expected.to validate_presence_of(:project) }
|
||||
it { is_expected.to validate_presence_of(:name) }
|
||||
|
|
|
@ -249,17 +249,34 @@ describe RootController, 'routing' do
|
|||
end
|
||||
end
|
||||
|
||||
# new_user_session GET /users/sign_in(.:format) devise/sessions#new
|
||||
# user_session POST /users/sign_in(.:format) devise/sessions#create
|
||||
# destroy_user_session DELETE /users/sign_out(.:format) devise/sessions#destroy
|
||||
# user_omniauth_authorize /users/auth/:provider(.:format) omniauth_callbacks#passthru
|
||||
# user_omniauth_callback /users/auth/:action/callback(.:format) omniauth_callbacks#(?-mix:(?!))
|
||||
# user_password POST /users/password(.:format) devise/passwords#create
|
||||
# new_user_password GET /users/password/new(.:format) devise/passwords#new
|
||||
# edit_user_password GET /users/password/edit(.:format) devise/passwords#edit
|
||||
# PUT /users/password(.:format) devise/passwords#update
|
||||
describe "Authentication", "routing" do
|
||||
# pending
|
||||
it "GET /users/sign_in" do
|
||||
expect(get("/users/sign_in")).to route_to('sessions#new')
|
||||
end
|
||||
|
||||
it "POST /users/sign_in" do
|
||||
expect(post("/users/sign_in")).to route_to('sessions#create')
|
||||
end
|
||||
|
||||
it "DELETE /users/sign_out" do
|
||||
expect(delete("/users/sign_out")).to route_to('sessions#destroy')
|
||||
end
|
||||
|
||||
it "POST /users/password" do
|
||||
expect(post("/users/password")).to route_to('passwords#create')
|
||||
end
|
||||
|
||||
it "GET /users/password/new" do
|
||||
expect(get("/users/password/new")).to route_to('passwords#new')
|
||||
end
|
||||
|
||||
it "GET /users/password/edit" do
|
||||
expect(get("/users/password/edit")).to route_to('passwords#edit')
|
||||
end
|
||||
|
||||
it "PUT /users/password" do
|
||||
expect(put("/users/password")).to route_to('passwords#update')
|
||||
end
|
||||
end
|
||||
|
||||
describe "Groups", "routing" do
|
||||
|
|
Loading…
Reference in a new issue