mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-07 15:33:50 +08:00
12 lines
286 B
Ruby
12 lines
286 B
Ruby
FactoryGirl.define do
|
|
factory :user do
|
|
full_name 'admin'
|
|
initials 'AD'
|
|
email 'admin_test@scinote.net'
|
|
password 'asdf1243'
|
|
password_confirmation 'asdf1243'
|
|
after(:create) do |user|
|
|
user.teams << (Team.first || FactoryGirl.create(:team))
|
|
end
|
|
end
|
|
end
|