Skip to content
Snippets Groups Projects
Unverified Commit 003f140c authored by Mike Greiling's avatar Mike Greiling
Browse files

ensure fork_source returns nil when project is the root fork, add tests

parent 1eefc384
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -1032,6 +1032,8 @@ class Project < ActiveRecord::Base
end
 
def fork_source
return nil unless forked?
forked_from_project || fork_network&.root_project
end
 
Loading
Loading
Loading
Loading
@@ -1951,6 +1951,10 @@ describe Project do
 
expect(second_fork.fork_source).to eq(project)
end
it 'returns nil if it is the root of the fork network' do
expect(project.fork_source).to be_nil
end
end
 
describe '#lfs_storage_project' do
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment