2015-07-26 15:58:08 +03:00
|
|
|
FactoryGirl.define do
|
|
|
|
factory :personal_profile do
|
2015-08-05 15:05:31 +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'
|
|
|
|
user
|
|
|
|
conference
|
2015-07-26 15:58:08 +03:00
|
|
|
end
|
|
|
|
end
|