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: a581725245a95d7c19128a3d5b333383ab0cffc0 (plain)
1
2
3
4
5
6
7
8
9
FactoryGirl.define do
  factory :board do
    project factory: :empty_project

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