2012-02-15 21:02:33 +01:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe ProtectedBranch do
|
2012-05-11 00:43:12 +02:00
|
|
|
describe 'Associations' do
|
|
|
|
it { should belong_to(:project) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'Validation' do
|
|
|
|
it { should validate_presence_of(:project_id) }
|
|
|
|
it { should validate_presence_of(:name) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'Callbacks' do
|
2012-08-29 17:36:02 +02:00
|
|
|
let(:branch) { build(:protected_branch) }
|
2012-05-11 00:43:12 +02:00
|
|
|
|
|
|
|
it 'call update_repository after save' do
|
2012-08-29 17:36:02 +02:00
|
|
|
branch.should_receive(:update_repository)
|
|
|
|
branch.save
|
2012-05-11 00:43:12 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'call update_repository after destroy' do
|
2012-08-29 17:36:02 +02:00
|
|
|
branch.save
|
|
|
|
branch.should_receive(:update_repository)
|
|
|
|
branch.destroy
|
2012-05-11 00:43:12 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#commit' do
|
2012-08-29 17:36:02 +02:00
|
|
|
let(:branch) { create(:protected_branch) }
|
2012-05-11 00:43:12 +02:00
|
|
|
|
|
|
|
it 'commits itself to its project' do
|
2012-08-29 17:36:02 +02:00
|
|
|
branch.project.should_receive(:commit).with(branch.name)
|
|
|
|
branch.commit
|
2012-05-11 00:43:12 +02:00
|
|
|
end
|
|
|
|
end
|
2012-02-15 21:02:33 +01:00
|
|
|
end
|