Skip to content
Snippets Groups Projects
Commit c110c9bd authored by James Lopez's avatar James Lopez
Browse files

refactored spec

parent 5255a54d
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -14,10 +14,17 @@ describe GitPushService, services: true do
end
 
describe 'Push branches' do
let(:oldrev) { @oldrev }
let(:newrev) { @newrev }
subject do
execute_service(project, user, oldrev, newrev, @ref )
end
context 'new branch' do
subject do
execute_service(project, user, @blankrev, @newrev, @ref )
end
let(:oldrev) { @blankrev }
 
it { is_expected.to be_truthy }
 
Loading
Loading
@@ -35,9 +42,6 @@ describe GitPushService, services: true do
end
 
context 'existing branch' do
subject do
execute_service(project, user, @oldrev, @newrev, @ref )
end
 
it { is_expected.to be_truthy }
 
Loading
Loading
@@ -49,9 +53,8 @@ describe GitPushService, services: true do
end
 
context 'rm branch' do
subject do
execute_service(project, user, @oldrev, @blankrev, @ref )
end
let(:newrev) { @blankrev }
 
it { is_expected.to be_truthy }
 
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