Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/work_items/dates_source_spec.rb')
-rw-r--r--spec/models/work_items/dates_source_spec.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/spec/models/work_items/dates_source_spec.rb b/spec/models/work_items/dates_source_spec.rb
new file mode 100644
index 00000000000..d75500cab16
--- /dev/null
+++ b/spec/models/work_items/dates_source_spec.rb
@@ -0,0 +1,23 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe WorkItems::DatesSource, feature_category: :portfolio_management do
+ describe 'ssociations' do
+ it { is_expected.to belong_to(:namespace).inverse_of(:work_items_dates_source) }
+ it { is_expected.to belong_to(:work_item).with_foreign_key('issue_id').inverse_of(:dates_source) }
+ it { is_expected.to belong_to(:due_date_sourcing_work_item).class_name('WorkItem') }
+ it { is_expected.to belong_to(:start_date_sourcing_work_item).class_name('WorkItem') }
+ it { is_expected.to belong_to(:due_date_sourcing_milestone).class_name('Milestone') }
+ it { is_expected.to belong_to(:start_date_sourcing_milestone).class_name('Milestone') }
+ end
+
+ it 'ensures to use work_item namespace' do
+ work_item = create(:work_item)
+ date_source = described_class.new(work_item: work_item)
+
+ date_source.valid?
+
+ expect(date_source.namespace).to eq(work_item.namespace)
+ end
+end