trabajo-afectivo/spec/factories/signature.rb

15 lines
334 B
Ruby
Raw Normal View History

FactoryBot.define do
sequence :test_signature_name do |n|
"Test signature #{n}"
end
end
FactoryBot.define do
factory :signature do
name { generate(:test_signature_name) }
2017-11-23 08:09:44 +00:00
body '#{user.firstname} #{user.lastname}'.text2html # rubocop:disable Lint/InterpolationCheck
created_by_id 1
updated_by_id 1
end
end