2017-03-20 08:01:06 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-07-10 10:24:02 -04:00
|
|
|
describe CreateBranchService do
|
2017-03-20 08:01:06 -04:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:service) { described_class.new(project, user) }
|
|
|
|
|
|
|
|
describe '#execute' do
|
|
|
|
context 'when repository is empty' do
|
|
|
|
let(:project) { create(:project_empty_repo) }
|
|
|
|
|
|
|
|
it 'creates master branch' do
|
|
|
|
service.execute('my-feature', 'master')
|
|
|
|
|
|
|
|
expect(project.repository.branch_exists?('master')).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates my-feature branch' do
|
|
|
|
service.execute('my-feature', 'master')
|
|
|
|
|
|
|
|
expect(project.repository.branch_exists?('my-feature')).to be_truthy
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|