gitlab-org--gitlab-foss/spec/models/protected_branch_spec.rb

28 lines
679 B
Ruby
Raw Normal View History

2012-10-09 08:14:17 +00:00
# == Schema Information
#
# Table name: protected_branches
#
2015-01-22 17:40:03 +00:00
# id :integer not null, primary key
# project_id :integer not null
# name :string(255) not null
# created_at :datetime
# updated_at :datetime
# developers_can_push :boolean default(FALSE), not null
2012-10-09 08:14:17 +00:00
#
require 'spec_helper'
describe ProtectedBranch do
2012-05-10 22:43:12 +00:00
describe 'Associations' do
it { is_expected.to belong_to(:project) }
2012-05-10 22:43:12 +00:00
end
describe "Mass assignment" do
end
2012-05-10 22:43:12 +00:00
describe 'Validation' do
it { is_expected.to validate_presence_of(:project) }
it { is_expected.to validate_presence_of(:name) }
2012-05-10 22:43:12 +00:00
end
end