clarion/spec/factories/personal_profile.rb

16 lines
425 B
Ruby
Raw Permalink Normal View History

2019-04-28 01:25:13 +03:00
FactoryBot.define do
factory :personal_profile do
2019-04-28 21:10:54 +03:00
first_name { "Foo" }
last_name { "Bar" }
organisation { "foo inc." }
public_email { "foo@example.com" }
picture { Rack::Test::UploadedFile.new(File.join(Rails.root, "spec", "support", "picture.jpg")) }
mobile_phone { "+359883444555" }
biography { "Just a bio" }
github { "foobar" }
twitter { "foobar" }
2015-08-05 15:05:31 +03:00
user
conference
end
end