2019-07-07 11:18:12 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe LabelPriority do
|
2016-11-03 12:29:30 +05:30
|
|
|
describe 'relationships' do
|
|
|
|
it { is_expected.to belong_to(:project) }
|
|
|
|
it { is_expected.to belong_to(:label) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'validations' do
|
|
|
|
it { is_expected.to validate_presence_of(:project) }
|
|
|
|
it { is_expected.to validate_presence_of(:label) }
|
|
|
|
it { is_expected.to validate_numericality_of(:priority).only_integer.is_greater_than_or_equal_to(0) }
|
|
|
|
|
|
|
|
it 'validates uniqueness of label_id scoped to project_id' do
|
|
|
|
create(:label_priority)
|
|
|
|
|
|
|
|
expect(subject).to validate_uniqueness_of(:label_id).scoped_to(:project_id)
|
|
|
|
end
|
2021-02-22 17:27:13 +05:30
|
|
|
|
|
|
|
describe 'when importing' do
|
|
|
|
subject { create(:label_priority, importing: true) }
|
|
|
|
|
|
|
|
it { is_expected.not_to validate_presence_of(:label) }
|
|
|
|
end
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
end
|