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
28412653
Commit
28412653
authored
Apr 09, 2019
by
charlieablett
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unneeded spec variables
parent
8c918c25
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
ee/spec/features/boards/add_issues_modal_spec.rb
ee/spec/features/boards/add_issues_modal_spec.rb
+2
-4
No files found.
ee/spec/features/boards/add_issues_modal_spec.rb
View file @
28412653
...
...
@@ -6,12 +6,10 @@ describe 'Issue Boards add issue modal', :js do
let
(
:project
)
{
create
(
:project
,
:public
)
}
let
(
:board
)
{
create
(
:board
,
project:
project
)
}
let
(
:user
)
{
create
(
:user
)
}
let!
(
:planning
)
{
create
(
:label
,
project:
project
,
name:
'Planning'
)
}
let!
(
:label
)
{
create
(
:label
,
project:
project
)
}
let!
(
:list1
)
{
create
(
:list
,
board:
board
,
label:
planning
,
position:
0
)
}
let!
(
:list2
)
{
create
(
:list
,
board:
board
,
label:
label
,
position:
1
)
}
let!
(
:list
)
{
create
(
:list
,
board:
board
,
label:
label
,
position:
0
)
}
let!
(
:issue
)
{
create
(
:issue
,
project:
project
,
title:
'abc'
,
description:
'def'
)
}
let!
(
:issue2
)
{
create
(
:issue
,
project:
project
,
title:
'hij'
,
description:
'klm'
)
}
before
do
project
.
add_maintainer
(
user
)
...
...
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