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
4c1f1c2c
Commit
4c1f1c2c
authored
Dec 29, 2015
by
Mike Wyatt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Asana specs
parent
12ec1e3c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
8 deletions
+32
-8
spec/models/project_services/asana_service_spec.rb
spec/models/project_services/asana_service_spec.rb
+32
-8
No files found.
spec/models/project_services/asana_service_spec.rb
View file @
4c1f1c2c
...
@@ -52,30 +52,54 @@ describe AsanaService, models: true do
...
@@ -52,30 +52,54 @@ describe AsanaService, models: true do
end
end
it
'should call Asana service to created a story'
do
it
'should call Asana service to created a story'
do
expect
(
Asana
::
Task
).
to
receive
(
:find
).
with
(
'123456'
).
once
d1
=
double
(
'Asana::Task'
,
add_comment:
true
)
expect
(
d1
).
to
receive
(
:add_comment
)
expect
(
Asana
::
Task
).
to
receive
(
:find_by_id
).
with
(
anything
,
'123456'
).
once
.
and_return
(
d1
)
@asana
.
check_commit
(
'related to #123456'
,
'pushed'
)
@asana
.
check_commit
(
'related to #123456'
,
'pushed'
)
end
end
it
'should call Asana service to created a story and close a task'
do
it
'should call Asana service to created a story and close a task'
do
expect
(
Asana
::
Task
).
to
receive
(
:find
).
with
(
'456789'
).
twice
d1
=
double
(
'Asana::Task'
,
add_comment:
true
)
expect
(
d1
).
to
receive
(
:add_comment
)
expect
(
d1
).
to
receive
(
:update
).
with
(
completed:
true
)
expect
(
Asana
::
Task
).
to
receive
(
:find_by_id
).
with
(
anything
,
'456789'
).
once
.
and_return
(
d1
)
@asana
.
check_commit
(
'fix #456789'
,
'pushed'
)
@asana
.
check_commit
(
'fix #456789'
,
'pushed'
)
end
end
it
'should be able to close via url'
do
it
'should be able to close via url'
do
expect
(
Asana
::
Task
).
to
receive
(
:find
).
with
(
'42'
).
twice
d1
=
double
(
'Asana::Task'
,
add_comment:
true
)
expect
(
d1
).
to
receive
(
:add_comment
)
expect
(
d1
).
to
receive
(
:update
).
with
(
completed:
true
)
expect
(
Asana
::
Task
).
to
receive
(
:find_by_id
).
with
(
anything
,
'42'
).
once
.
and_return
(
d1
)
@asana
.
check_commit
(
'closes https://app.asana.com/19292/956299/42'
,
'pushed'
)
@asana
.
check_commit
(
'closes https://app.asana.com/19292/956299/42'
,
'pushed'
)
end
end
it
'should allow multiple matches per line'
do
it
'should allow multiple matches per line'
do
expect
(
Asana
::
Task
).
to
receive
(
:find
).
with
(
'123'
).
twice
d1
=
double
(
'Asana::Task'
,
add_comment:
true
)
expect
(
Asana
::
Task
).
to
receive
(
:find
).
with
(
'456'
).
twice
expect
(
d1
).
to
receive
(
:add_comment
)
expect
(
Asana
::
Task
).
to
receive
(
:find
).
with
(
'789'
).
once
expect
(
d1
).
to
receive
(
:update
).
with
(
completed:
true
)
expect
(
Asana
::
Task
).
to
receive
(
:find_by_id
).
with
(
anything
,
'123'
).
once
.
and_return
(
d1
)
expect
(
Asana
::
Task
).
to
receive
(
:find
).
with
(
'42'
).
once
d2
=
double
(
'Asana::Task'
,
add_comment:
true
)
expect
(
Asana
::
Task
).
to
receive
(
:find
).
with
(
'12'
).
twice
expect
(
d2
).
to
receive
(
:add_comment
)
expect
(
d2
).
to
receive
(
:update
).
with
(
completed:
true
)
expect
(
Asana
::
Task
).
to
receive
(
:find_by_id
).
with
(
anything
,
'456'
).
once
.
and_return
(
d2
)
d3
=
double
(
'Asana::Task'
,
add_comment:
true
)
expect
(
d3
).
to
receive
(
:add_comment
)
expect
(
Asana
::
Task
).
to
receive
(
:find_by_id
).
with
(
anything
,
'789'
).
once
.
and_return
(
d3
)
d4
=
double
(
'Asana::Task'
,
add_comment:
true
)
expect
(
d4
).
to
receive
(
:add_comment
)
expect
(
Asana
::
Task
).
to
receive
(
:find_by_id
).
with
(
anything
,
'42'
).
once
.
and_return
(
d4
)
d5
=
double
(
'Asana::Task'
,
add_comment:
true
)
expect
(
d5
).
to
receive
(
:add_comment
)
expect
(
d5
).
to
receive
(
:update
).
with
(
completed:
true
)
expect
(
Asana
::
Task
).
to
receive
(
:find_by_id
).
with
(
anything
,
'12'
).
once
.
and_return
(
d5
)
message
=
<<-
EOF
message
=
<<-
EOF
minor bigfix, refactoring, fixed #123 and Closes #456 work on #789
minor bigfix, refactoring, fixed #123 and Closes #456 work on #789
...
...
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