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

boards.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e125237ae890e3c53a361ccb55813274563417c (plain)
1
2
3
4
5
6
7
8
9
FactoryBot.define do
  factory :board do
    project

    after(:create) do |board|
      board.lists.create(list_type: :closed)
    end
  end
end