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
iv
gitlab-ce
Commits
f95f242c
Commit
f95f242c
authored
Mar 04, 2016
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated tests
parent
b1264d86
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
10 deletions
+10
-10
features/steps/project/issues/award_emoji.rb
features/steps/project/issues/award_emoji.rb
+1
-1
features/steps/project/issues/issues.rb
features/steps/project/issues/issues.rb
+1
-1
features/steps/project/merge_requests.rb
features/steps/project/merge_requests.rb
+2
-2
features/steps/shared/diff_note.rb
features/steps/shared/diff_note.rb
+2
-2
features/steps/shared/issuable.rb
features/steps/shared/issuable.rb
+1
-1
features/steps/shared/note.rb
features/steps/shared/note.rb
+3
-3
No files found.
features/steps/project/issues/award_emoji.rb
View file @
f95f242c
...
...
@@ -79,7 +79,7 @@ class Spinach::Features::AwardEmoji < Spinach::FeatureSteps
step
'I leave comment with a single emoji'
do
page
.
within
(
'.js-main-target-form'
)
do
fill_in
'note[note]'
,
with:
':smile:'
click_button
'
Add
Comment'
click_button
'Comment'
end
end
...
...
features/steps/project/issues/issues.rb
View file @
f95f242c
...
...
@@ -267,7 +267,7 @@ class Spinach::Features::ProjectIssues < Spinach::FeatureSteps
step
'I leave a comment with code block'
do
page
.
within
(
".js-main-target-form"
)
do
fill_in
"note[note]"
,
with:
"```
\n
Command [1]: /usr/local/bin/git , see [text](doc/text)
\n
```"
click_button
"
Add
Comment"
click_button
"Comment"
sleep
0.05
end
end
...
...
features/steps/project/merge_requests.rb
View file @
f95f242c
...
...
@@ -417,7 +417,7 @@ class Spinach::Features::ProjectMergeRequests < Spinach::FeatureSteps
page
.
within
(
".js-discussion-note-form"
)
do
fill_in
"note_note"
,
with:
"Line is wrong on here"
click_button
"
Add
Comment"
click_button
"Comment"
end
end
...
...
@@ -509,7 +509,7 @@ class Spinach::Features::ProjectMergeRequests < Spinach::FeatureSteps
def
leave_comment
(
message
)
page
.
within
(
".js-discussion-note-form"
,
visible:
true
)
do
fill_in
"note_note"
,
with:
message
click_button
"
Add
Comment"
click_button
"Comment"
end
page
.
within
(
".notes_holder"
,
visible:
true
)
do
expect
(
page
).
to
have_content
message
...
...
features/steps/shared/diff_note.rb
View file @
f95f242c
...
...
@@ -93,14 +93,14 @@ module SharedDiffNote
page
.
within
(
"form[id$='
#{
sample_commit
.
line_code
}
']"
)
do
fill_in
'note[note]'
,
with:
':smile:'
click_button
(
'
Add
Comment'
)
click_button
(
'Comment'
)
end
end
end
step
'I submit the diff comment'
do
page
.
within
(
diff_file_selector
)
do
click_button
(
"
Add
Comment"
)
click_button
(
"Comment"
)
end
end
...
...
features/steps/shared/issuable.rb
View file @
f95f242c
...
...
@@ -182,7 +182,7 @@ module SharedIssuable
page
.
within
(
'.js-main-target-form'
)
do
fill_in
'note[note]'
,
with:
"#
#{
issuable
.
to_reference
(
project
)
}
"
click_button
'
Add
Comment'
click_button
'Comment'
end
end
...
...
features/steps/shared/note.rb
View file @
f95f242c
...
...
@@ -17,7 +17,7 @@ module SharedNote
step
'I leave a comment like "XML attached"'
do
page
.
within
(
".js-main-target-form"
)
do
fill_in
"note[note]"
,
with:
"XML attached"
click_button
"
Add
Comment"
click_button
"Comment"
end
end
...
...
@@ -30,7 +30,7 @@ module SharedNote
step
'I submit the comment'
do
page
.
within
(
".js-main-target-form"
)
do
click_button
"
Add
Comment"
click_button
"Comment"
end
end
...
...
@@ -115,7 +115,7 @@ module SharedNote
step
'I leave a comment with a header containing "Comment with a header"'
do
page
.
within
(
".js-main-target-form"
)
do
fill_in
"note[note]"
,
with:
"# Comment with a header"
click_button
"
Add
Comment"
click_button
"Comment"
sleep
0.05
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