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/widgets/assignees_spec.rb')
-rw-r--r--spec/models/work_items/widgets/assignees_spec.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/models/work_items/widgets/assignees_spec.rb b/spec/models/work_items/widgets/assignees_spec.rb
index a2c93c07fde..19c17658ce4 100644
--- a/spec/models/work_items/widgets/assignees_spec.rb
+++ b/spec/models/work_items/widgets/assignees_spec.rb
@@ -11,6 +11,12 @@ RSpec.describe WorkItems::Widgets::Assignees do
it { is_expected.to eq(:assignees) }
end
+ describe '.quick_action_params' do
+ subject { described_class.quick_action_params }
+
+ it { is_expected.to include(:assignee_ids) }
+ end
+
describe '#type' do
subject { described_class.new(work_item).type }