diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2023-02-16 12:08:03 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2023-02-16 12:08:03 +0000 |
commit | 12166c0faf75479889bc0ac432b85b9dae91552b (patch) | |
tree | fc5a3140e12c815beb6c34d44e2ad423a4f302ad /spec/factories | |
parent | b1a0a71628cb4531f3b9a2999f5aa4d22f6ac5fb (diff) | |
download | gitlab-ce-12166c0faf75479889bc0ac432b85b9dae91552b.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/factories')
-rw-r--r-- | spec/factories/work_items/widget_definitions.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/factories/work_items/widget_definitions.rb b/spec/factories/work_items/widget_definitions.rb new file mode 100644 index 00000000000..bbd7c1e7432 --- /dev/null +++ b/spec/factories/work_items/widget_definitions.rb @@ -0,0 +1,11 @@ +# frozen_string_literal: true + +FactoryBot.define do + factory :widget_definition, class: 'WorkItems::WidgetDefinition' do + work_item_type + namespace + + name { 'Description' } + widget_type { 'description' } + end +end |