discourse/spec/fabricators/sidebar_section_link_fabric...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
297 B
Ruby
Raw Normal View History

# frozen_string_literal: true
Fabricator(:sidebar_section_link) do
user
end
Fabricator(:category_sidebar_section_link, from: :sidebar_section_link) do
linkable(fabricator: :category)
end
Fabricator(:tag_sidebar_section_link, from: :sidebar_section_link) do
linkable(fabricator: :tag)
end