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
0
Merge Requests
0
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
Jérome Perrin
gitlab-ce
Commits
284af578
Commit
284af578
authored
Oct 04, 2016
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added tests
parent
a9c98be0
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
81 additions
and
1 deletion
+81
-1
app/views/projects/boards/components/_board.html.haml
app/views/projects/boards/components/_board.html.haml
+1
-1
spec/features/boards/new_issue_spec.rb
spec/features/boards/new_issue_spec.rb
+80
-0
No files found.
app/views/projects/boards/components/_board.html.haml
View file @
284af578
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
-
if
can?
current_user
,
:create_issue
,
@project
-
if
can?
current_user
,
:create_issue
,
@project
%button
.btn.btn-small.btn-default.pull-right
{
type:
"button"
,
%button
.btn.btn-small.btn-default.pull-right
{
type:
"button"
,
"@click"
=>
"showNewIssueForm"
,
"@click"
=>
"showNewIssueForm"
,
"v-if"
=>
"list.type !== 'done'"
}
"v-if"
=>
"list.type !== 'done'
&& list.type !== 'blank'
"
}
=
icon
(
"plus"
)
=
icon
(
"plus"
)
-
if
can?
(
current_user
,
:admin_list
,
@project
)
-
if
can?
(
current_user
,
:admin_list
,
@project
)
%board-delete
{
"inline-template"
=>
true
,
%board-delete
{
"inline-template"
=>
true
,
...
...
spec/features/boards/new_issue_spec.rb
0 → 100644
View file @
284af578
require
'rails_helper'
describe
'Issue Boards new issue'
,
feature:
true
,
js:
true
do
include
WaitForAjax
include
WaitForVueResource
let
(
:project
)
{
create
(
:project_with_board
,
:public
)
}
let
(
:user
)
{
create
(
:user
)
}
context
'authorized user'
do
before
do
project
.
team
<<
[
user
,
:master
]
login_as
(
user
)
visit
namespace_project_board_path
(
project
.
namespace
,
project
)
wait_for_vue_resource
expect
(
page
).
to
have_selector
(
'.board'
,
count:
3
)
end
it
'displays new issue button'
do
expect
(
page
).
to
have_selector
(
'.board-issue-count-holder .btn'
,
count:
1
)
end
it
'does not display new issue button in done list'
do
page
.
within
(
'.board:nth-child(3)'
)
do
expect
(
page
).
not_to
have_selector
(
'.board-issue-count-holder .btn'
)
end
end
it
'shows form when clicking button'
do
page
.
within
(
first
(
'.board'
))
do
find
(
'.board-issue-count-holder .btn'
).
click
expect
(
page
).
to
have_selector
(
'.board-new-issue-form'
)
end
end
it
'hides form when clicking cancel'
do
page
.
within
(
first
(
'.board'
))
do
find
(
'.board-issue-count-holder .btn'
).
click
expect
(
page
).
to
have_selector
(
'.board-new-issue-form'
)
click_button
'Cancel'
expect
(
page
).
to
have_selector
(
'.board-new-issue-form'
,
visible:
false
)
end
end
it
'creates new issue'
do
page
.
within
(
first
(
'.board'
))
do
find
(
'.board-issue-count-holder .btn'
).
click
end
page
.
within
(
first
(
'.board-new-issue-form'
))
do
find
(
'.form-control'
).
set
(
'bug'
)
click_button
'Submit issue'
end
wait_for_vue_resource
page
.
within
(
first
(
'.board .board-issue-count'
))
do
expect
(
page
).
to
have_content
(
'1'
)
end
end
end
context
'unauthorized user'
do
before
do
visit
namespace_project_board_path
(
project
.
namespace
,
project
)
wait_for_vue_resource
end
it
'does not display new issue button'
do
expect
(
page
).
to
have_selector
(
'.board-issue-count-holder .btn'
,
count:
0
)
end
end
end
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