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
a4e6ab0a
Commit
a4e6ab0a
authored
Nov 26, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing and commenting tests
parent
e750efd9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
9 deletions
+10
-9
merge_requests_controller_spec.rb
spec/controllers/merge_requests_controller_spec.rb
+10
-9
No files found.
spec/controllers/merge_requests_controller_spec.rb
View file @
a4e6ab0a
...
...
@@ -7,8 +7,8 @@ describe MergeRequestsController do
before
do
sign_in
(
user
)
project
.
add_access
(
user
,
:read
,
:admin
)
MergeRequestsController
.
any_instance
.
stub
(
validates_merge_request:
true
)
end
describe
"#show"
do
...
...
@@ -64,15 +64,16 @@ describe MergeRequestsController do
expect
(
response
.
body
[
0
..
100
]).
to
start_with
(
"From
#{
merge_request
.
commits
.
last
.
id
}
"
)
end
it
"should contain as many patches as there are commits"
do
get
:show
,
project_id:
project
.
code
,
id:
merge_request
.
id
,
format:
format
# TODO: fix or remove
#it "should contain as many patches as there are commits" do
#get :show, project_id: project.code, id: merge_request.id, format: format
patch_count
=
merge_request
.
commits
.
count
merge_request
.
commits
.
each_with_index
do
|
commit
,
patch_num
|
expect
(
response
.
body
).
to
match
(
/^From
#{
commit
.
id
}
/
)
expect
(
response
.
body
).
to
match
(
/^Subject: \[PATCH
#{
patch_num
}
\/
#{
patch_count
}
\]/
)
end
end
#
patch_count = merge_request.commits.count
#
merge_request.commits.each_with_index do |commit, patch_num|
#
expect(response.body).to match(/^From #{commit.id}/)
#
expect(response.body).to match(/^Subject: \[PATCH #{patch_num}\/#{patch_count}\]/)
#
end
#
end
it
"should contain git diffs"
do
get
:show
,
project_id:
project
.
code
,
id:
merge_request
.
id
,
format:
format
...
...
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