debian-mirror-gitlab/spec/models/protected_branch_spec.rb

28 lines
679 B
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
# == Schema Information
#
# Table name: protected_branches
#
2015-04-26 12:48:37 +05:30
# 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
2014-09-02 18:07:02 +05:30
#
require 'spec_helper'
describe ProtectedBranch do
describe 'Associations' do
2015-04-26 12:48:37 +05:30
it { is_expected.to belong_to(:project) }
2014-09-02 18:07:02 +05:30
end
describe "Mass assignment" do
end
describe 'Validation' do
2015-04-26 12:48:37 +05:30
it { is_expected.to validate_presence_of(:project) }
it { is_expected.to validate_presence_of(:name) }
2014-09-02 18:07:02 +05:30
end
end