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
Kazuhiko Shiozaki
gitlab-ce
Commits
446390e6
Commit
446390e6
authored
Jan 06, 2015
by
Job van der Voort
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:gitlabhq/gitlabhq
parents
a2dd02ea
dbdccd5d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
spec/features/atom/users_spec.rb
spec/features/atom/users_spec.rb
+7
-2
No files found.
spec/features/atom/users_spec.rb
View file @
446390e6
...
...
@@ -24,11 +24,12 @@ describe "User Feed", feature: true do
end
it
"should have issue opened event"
do
body
.
should
have_content
(
"
#{
user
.
name
}
opened issue #
#{
issue
.
iid
}
"
)
expect
(
body
).
to
have_content
(
"
#{
safe_
name
}
opened issue #
#{
issue
.
iid
}
"
)
end
it
"should have issue comment event"
do
body
.
should
have_content
(
"
#{
user
.
name
}
commented on issue #
#{
issue
.
iid
}
"
)
expect
(
body
).
to
have_content
(
"
#{
safe_name
}
commented on issue #
#{
issue
.
iid
}
"
)
end
end
end
...
...
@@ -40,4 +41,8 @@ describe "User Feed", feature: true do
def
note_event
(
note
,
user
)
EventCreateService
.
new
.
leave_note
(
note
,
user
)
end
def
safe_name
html_escape
(
user
.
name
)
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