diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-10-06 16:20:21 -0300 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-10-11 11:39:04 -0300 |
commit | e46a4aabd925e0182c31976b5d28c38b9a8a0872 (patch) | |
tree | 8400151d252bb7d2bb7010be56c5bef196d5b311 /spec/factories/boards.rb | |
parent | 95a5cc9285a8583988ece697ebdb948730b5db55 (diff) | |
download | gitlab-ce-e46a4aabd925e0182c31976b5d28c38b9a8a0872.tar.gz |
Update Boards::CreateService to handle with the has_many association
Diffstat (limited to 'spec/factories/boards.rb')
-rw-r--r-- | spec/factories/boards.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/factories/boards.rb b/spec/factories/boards.rb index 35c4a0b6f08..ec46146d9b5 100644 --- a/spec/factories/boards.rb +++ b/spec/factories/boards.rb @@ -1,5 +1,10 @@ FactoryGirl.define do factory :board do project factory: :empty_project + + after(:create) do |board| + board.lists.create(list_type: :backlog) + board.lists.create(list_type: :done) + end end end |