Remove backlog lists from factories

This commit is contained in:
Douglas Barbosa Alexandre 2017-01-27 03:27:15 -02:00 committed by Fatih Acet
parent 158173a126
commit a3edd5f1fd
2 changed files with 0 additions and 7 deletions

View file

@ -3,7 +3,6 @@ FactoryGirl.define do
project factory: :empty_project
after(:create) do |board|
board.lists.create(list_type: :backlog)
board.lists.create(list_type: :done)
end
end

View file

@ -6,12 +6,6 @@ FactoryGirl.define do
sequence(:position)
end
factory :backlog_list, parent: :list do
list_type :backlog
label nil
position nil
end
factory :done_list, parent: :list do
list_type :done
label nil