mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-06 10:19:48 +00:00
11 lines
308 B
Ruby
11 lines
308 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
require_migration!
|
|
|
|
RSpec.describe AddDevWidgetToTasks, :migration, feature_category: :team_planning do
|
|
it_behaves_like 'migration that adds widgets to a work item type' do
|
|
let(:target_type_enum_value) { described_class::TASK_ENUM_VALUE }
|
|
end
|
|
end
|