2012-10-09 04:14:17 -04:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: protected_branches
|
|
|
|
#
|
2012-11-19 13:24:05 -05:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# project_id :integer not null
|
|
|
|
# name :string(255) not null
|
2014-04-09 08:05:03 -04:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
2012-10-09 04:14:17 -04:00
|
|
|
#
|
|
|
|
|
2012-02-15 15:02:33 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe ProtectedBranch do
|
2012-05-10 18:43:12 -04:00
|
|
|
describe 'Associations' do
|
|
|
|
it { should belong_to(:project) }
|
|
|
|
end
|
|
|
|
|
2012-09-26 14:17:17 -04:00
|
|
|
describe "Mass assignment" do
|
|
|
|
end
|
|
|
|
|
2012-05-10 18:43:12 -04:00
|
|
|
describe 'Validation' do
|
2012-10-08 20:10:16 -04:00
|
|
|
it { should validate_presence_of(:project) }
|
2012-05-10 18:43:12 -04:00
|
|
|
it { should validate_presence_of(:name) }
|
|
|
|
end
|
2012-02-15 15:02:33 -05:00
|
|
|
end
|