From 5ef567e33df9f4562f56fdbf60329c027dbfa913 Mon Sep 17 00:00:00 2001 From: Douglas Barbosa Alexandre Date: Thu, 28 Jul 2016 01:54:13 -0300 Subject: Does not allow Backlog/Done lists to be removed --- spec/factories/lists.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'spec/factories/lists.rb') diff --git a/spec/factories/lists.rb b/spec/factories/lists.rb index 4e493da41a0..bef161d2a7e 100644 --- a/spec/factories/lists.rb +++ b/spec/factories/lists.rb @@ -4,4 +4,16 @@ FactoryGirl.define do label sequence(:position) end + + factory :backlog_list, parent: :list do + list_type :backlog + end + + factory :label_list, parent: :list do + list_type :label + end + + factory :done_list, parent: :list do + list_type :done + end end -- cgit v1.2.1