Ensure report details are not blank.

This commit is contained in:
Andy Allan 2017-09-06 18:17:54 +01:00
parent d7612f42d0
commit c00c515d9d
4 changed files with 17 additions and 4 deletions

View file

@ -0,0 +1,7 @@
FactoryGirl.define do
factory :report do
sequence(:details) { |n| "Report details #{n}" }
issue
user
end
end