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
d472810e
Commit
d472810e
authored
Apr 05, 2016
by
Sebastian Klier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
formatting and test structure
parent
a88f0a1f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
45 additions
and
28 deletions
+45
-28
app/models/project_services/slack_service/wiki_page_message.rb
...odels/project_services/slack_service/wiki_page_message.rb
+1
-1
db/migrate/20160227120047_add_event_to_services.rb
db/migrate/20160227120047_add_event_to_services.rb
+1
-1
spec/models/project_services/slack_service/wiki_page_message_spec.rb
.../project_services/slack_service/wiki_page_message_spec.rb
+43
-26
No files found.
app/models/project_services/slack_service/wiki_page_message.rb
View file @
d472810e
...
...
@@ -19,7 +19,7 @@ class SlackService
@wiki_page_url
=
obj_attr
[
:url
]
@description
=
obj_attr
[
:content
]
@action
=
\
@action
=
case
obj_attr
[
:action
]
when
"create"
"created"
...
...
db/migrate/20160227120047_add_event_to_services.rb
View file @
d472810e
class
AddEventToServices
<
ActiveRecord
::
Migration
def
change
add_column
:services
,
:wiki_page_events
,
:boolean
,
:default
=>
true
add_column
:services
,
:wiki_page_events
,
:boolean
,
default:
true
end
end
spec/models/project_services/slack_service/wiki_page_message_spec.rb
View file @
d472810e
...
...
@@ -11,11 +11,9 @@ describe SlackService::WikiPageMessage, models: true do
},
project_name:
'project_name'
,
project_url:
'somewhere.com'
,
object_attributes:
{
title:
'Wiki page title'
,
url:
'url'
,
action:
'create'
,
content:
'Wiki page description'
}
}
...
...
@@ -23,12 +21,34 @@ describe SlackService::WikiPageMessage, models: true do
let
(
:color
)
{
'#345'
}
context
'create'
do
it
'returns a message regarding creation of pages'
do
expect
(
subject
.
pretext
).
to
eq
(
describe
'#pretext'
do
context
'when :action == "create"'
do
before
{
args
[
:object_attributes
][
:action
]
=
'create'
}
it
do
expect
(
pretext
).
to
eq
(
'Test User created <url|wiki page> in <somewhere.com|project_name>: '
\
'*Wiki page title*'
)
expect
(
subject
.
attachments
).
to
eq
([
end
end
context
'when :action == "update"'
do
before
{
args
[
:object_attributes
][
:action
]
=
'update'
}
it
do
expect
(
pretext
).
to
eq
(
'Test User edited <url|wiki page> in <somewhere.com|project_name>: '
\
'*Wiki page title*'
)
end
end
end
describe
'#attachments'
do
context
'when :action == "create"'
do
before
{
args
[
:object_attributes
][
:action
]
=
'create'
}
it
do
expect
(
attachments
).
to
eq
([
{
text:
"Wiki page description"
,
color:
color
,
...
...
@@ -37,15 +57,11 @@ describe SlackService::WikiPageMessage, models: true do
end
end
context
'update'
do
before
do
args
[
:object_attributes
][
:action
]
=
'update'
end
it
'returns a message regarding updating of pages'
do
expect
(
subject
.
pretext
).
to
eq
(
'Test User edited <url|wiki page> in <somewhere.com|project_name>: '
\
'*Wiki page title*'
)
expect
(
subject
.
attachments
).
to
eq
([
context
'when :action == "update"'
do
before
{
args
[
:object_attributes
][
:action
]
=
'update'
}
it
do
expect
(
attachments
).
to
eq
([
{
text:
"Wiki page description"
,
color:
color
,
...
...
@@ -53,4 +69,5 @@ describe SlackService::WikiPageMessage, models: true do
])
end
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