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
iv
gitlab-ce
Commits
c6097f24
Commit
c6097f24
authored
Jul 18, 2016
by
tiagonbotelho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adds test for update_file method
parent
2e021c4e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
spec/models/repository_spec.rb
spec/models/repository_spec.rb
+14
-0
No files found.
spec/models/repository_spec.rb
View file @
c6097f24
...
...
@@ -129,6 +129,20 @@ describe Repository, models: true do
end
end
describe
:update_file
do
it
'updates filename successfully'
do
expect
{
repository
.
update_file
(
user
,
'NEWLICENSE'
,
'Copyright!'
,
branch:
'master'
,
previous_path:
'LICENSE'
,
message:
'Changes filename'
)}.
to
change
{
repository
.
commits
(
'master'
).
count
}.
by
(
1
)
files
=
repository
.
ls_files
(
'master'
)
expect
(
files
).
not_to
include
(
'LICENSE'
)
expect
(
files
).
to
include
(
'NEWLICENSE'
)
end
end
describe
"search_files"
do
let
(
:results
)
{
repository
.
search_files
(
'feature'
,
'master'
)
}
subject
{
results
}
...
...
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