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
Léo-Paul Géneau
gitlab-ce
Commits
5c69043e
Commit
5c69043e
authored
Jul 19, 2016
by
tiagonbotelho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes commit_file test on repository_spec
parent
85e50301
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
spec/models/repository_spec.rb
spec/models/repository_spec.rb
+5
-5
No files found.
spec/models/repository_spec.rb
View file @
5c69043e
...
@@ -130,17 +130,17 @@ describe Repository, models: true do
...
@@ -130,17 +130,17 @@ describe Repository, models: true do
end
end
end
end
describe
:c
reate
_file
do
describe
:c
ommit
_file
do
it
'commits change to a file successfully'
do
it
'commits change to a file successfully'
do
expect
do
expect
do
repository
.
commit_file
(
user
,
'
LICENSE'
,
'Copyright
!'
,
repository
.
commit_file
(
user
,
'
CHANGELOG'
,
'Changelog
!'
,
'Updates file
name
'
,
'Updates file
content
'
,
'master'
,
true
)
'master'
,
true
)
end
.
to
change
{
repository
.
commits
(
'master'
).
count
}.
by
(
1
)
end
.
to
change
{
repository
.
commits
(
'master'
).
count
}.
by
(
1
)
blob
=
Blob
.
decorate
(
repository
.
blob_at
(
repository
.
commits
(
'master'
).
first
.
id
,
'LICENSE'
)
)
blob
=
repository
.
blob_at
(
'master'
,
'CHANGELOG'
)
expect
(
blob
.
data
).
to
eq
(
'C
opyright
!'
)
expect
(
blob
.
data
).
to
eq
(
'C
hangelog
!'
)
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