Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
199343e0
Commit
199343e0
authored
Apr 10, 2021
by
Abdul Wadood
Committed by
David O'Regan
Apr 10, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix RSpec/EmptyLineAfterFinalLetItBe for ee/spec/views
parent
3bc07e26
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
11 additions
and
6 deletions
+11
-6
.rubocop_manual_todo.yml
.rubocop_manual_todo.yml
+0
-6
ee/changelogs/unreleased/rspec-empty-lines-after-letitbe-ee-spec-views.yml
...eleased/rspec-empty-lines-after-letitbe-ee-spec-views.yml
+5
-0
ee/spec/views/admin/application_settings/_elasticsearch_form.html.haml_spec.rb
...pplication_settings/_elasticsearch_form.html.haml_spec.rb
+1
-0
ee/spec/views/groups/_compliance_frameworks.html.haml_spec.rb
...pec/views/groups/_compliance_frameworks.html.haml_spec.rb
+1
-0
ee/spec/views/groups/edit.html.haml_spec.rb
ee/spec/views/groups/edit.html.haml_spec.rb
+1
-0
ee/spec/views/projects/pipelines/_tabs_content.html.haml_spec.rb
.../views/projects/pipelines/_tabs_content.html.haml_spec.rb
+1
-0
ee/spec/views/shared/billings/_eoa_bronze_plan_banner.html.haml_spec.rb
...shared/billings/_eoa_bronze_plan_banner.html.haml_spec.rb
+1
-0
ee/spec/views/shared/billings/_trial_status.html.haml_spec.rb
...pec/views/shared/billings/_trial_status.html.haml_spec.rb
+1
-0
No files found.
.rubocop_manual_todo.yml
View file @
199343e0
...
...
@@ -643,12 +643,6 @@ RSpec/EmptyLineAfterFinalLetItBe:
-
ee/spec/support/shared_examples/graphql/mutations/set_multiple_assignees_shared_examples.rb
-
ee/spec/support/shared_examples/quick_actions/issue/status_page_quick_actions_shared_examples.rb
-
ee/spec/support/shared_examples/services/search_notes_shared_examples.rb
-
ee/spec/views/admin/application_settings/_elasticsearch_form.html.haml_spec.rb
-
ee/spec/views/groups/_compliance_frameworks.html.haml_spec.rb
-
ee/spec/views/groups/edit.html.haml_spec.rb
-
ee/spec/views/projects/pipelines/_tabs_content.html.haml_spec.rb
-
ee/spec/views/shared/billings/_eoa_bronze_plan_banner.html.haml_spec.rb
-
ee/spec/views/shared/billings/_trial_status.html.haml_spec.rb
-
spec/controllers/confirmations_controller_spec.rb
-
spec/controllers/dashboard/projects_controller_spec.rb
-
spec/controllers/invites_controller_spec.rb
...
...
ee/changelogs/unreleased/rspec-empty-lines-after-letitbe-ee-spec-views.yml
0 → 100644
View file @
199343e0
---
title
:
Fix RSpec/EmptyLineAfterFinalLetItBe rubocop offenses in ee/spec/views
merge_request
:
58280
author
:
Abdul Wadood @abdulwd
type
:
fixed
ee/spec/views/admin/application_settings/_elasticsearch_form.html.haml_spec.rb
View file @
199343e0
...
...
@@ -4,6 +4,7 @@ require 'spec_helper'
RSpec
.
describe
'admin/application_settings/_elasticsearch_form'
do
let_it_be
(
:admin
)
{
create
(
:admin
)
}
let
(
:page
)
{
Capybara
::
Node
::
Simple
.
new
(
rendered
)
}
let
(
:pause_indexing
)
{
false
}
let
(
:pending_migrations
)
{
false
}
...
...
ee/spec/views/groups/_compliance_frameworks.html.haml_spec.rb
View file @
199343e0
...
...
@@ -4,6 +4,7 @@ require 'spec_helper'
RSpec
.
describe
'groups/_compliance_frameworks.html.haml'
do
let_it_be
(
:group
)
{
build
(
:group
)
}
let
(
:title
)
{
'Compliance frameworks'
}
let
(
:description
)
{
'Configure frameworks to apply enforceable rules to projects.'
}
...
...
ee/spec/views/groups/edit.html.haml_spec.rb
View file @
199343e0
...
...
@@ -4,6 +4,7 @@ require 'spec_helper'
RSpec
.
describe
'groups/edit.html.haml'
do
let_it_be
(
:user
)
{
create
(
:user
)
}
let
(
:group
)
{
create
(
:group
)
}
before
do
...
...
ee/spec/views/projects/pipelines/_tabs_content.html.haml_spec.rb
View file @
199343e0
...
...
@@ -4,6 +4,7 @@ require 'spec_helper'
RSpec
.
describe
'projects/pipelines/_tabs_content'
do
let_it_be
(
:user
)
{
create
(
:user
)
}
let
(
:pipeline
)
{
create
(
:ci_pipeline
).
present
(
current_user:
user
)
}
let
(
:locals
)
{
{
pipeline:
pipeline
,
project:
pipeline
.
project
}
}
...
...
ee/spec/views/shared/billings/_eoa_bronze_plan_banner.html.haml_spec.rb
View file @
199343e0
...
...
@@ -4,6 +4,7 @@ require 'spec_helper'
RSpec
.
describe
'shared/billings/_eoa_bronze_plan_banner.html.haml'
do
let_it_be
(
:user
)
{
create
(
:user
)
}
let
(
:eoa_bronze_plan_end_date
)
{
Date
.
current
+
5
.
days
}
stub_feature_flags
(
show_billing_eoa_banner:
true
)
...
...
ee/spec/views/shared/billings/_trial_status.html.haml_spec.rb
View file @
199343e0
...
...
@@ -6,6 +6,7 @@ RSpec.describe 'shared/billings/_trial_status.html.haml' do
include
ApplicationHelper
let_it_be
(
:group
)
{
create
(
:group
)
}
let
(
:plan
)
{
nil
}
let
(
:trial_ends_on
)
{
nil
}
let
(
:trial
)
{
false
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment