BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
75fbca83
Commit
75fbca83
authored
Sep 12, 2014
by
Marin Jankovski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add one feature test.
parent
9945e8c4
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
merge_requests.feature
features/project/merge_requests.feature
+10
-0
merge_requests.rb
features/steps/project/merge_requests.rb
+10
-0
No files found.
features/project/merge_requests.feature
View file @
75fbca83
...
...
@@ -147,3 +147,13 @@ Feature: Project Merge Requests
And
I switch to the diff tab
And
I unfold diff
Then
I should see additional file lines
@javascript
Scenario
:
I
show comments on a merge request side-by-side diff with comments in multiple files
Given
project
"Shop"
have
"Bug NS-05"
open merge request with diffs inside
And
I visit merge request page
"Bug NS-05"
And
I switch to the diff tab
And
I leave a comment like
"Line is correct"
on line 12 of the first file
And
I leave a comment like
"Line is wrong"
on line 39 of the second file
And
I click Side-by-side Diff tab
Then
I should see comments on the side-by-side diff page
features/steps/project/merge_requests.rb
View file @
75fbca83
...
...
@@ -250,6 +250,16 @@ class ProjectMergeRequests < Spinach::FeatureSteps
expect
(
first
(
'.text-file'
)).
to
have_content
(
'.bundle'
)
end
step
'I click Side-by-side Diff tab'
do
click_link
'Side-by-side Diff'
end
step
'I should see comments on the side-by-side diff page'
do
within
'.files [id^=diff]:nth-child(1) .note-text'
do
page
.
should
have_visible_content
"Line is correct"
end
end
def
project
@project
||=
Project
.
find_by!
(
name:
"Shop"
)
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