mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 21:24:54 +08:00
9 lines
187 B
Ruby
9 lines
187 B
Ruby
FactoryGirl.define do
|
|
factory :user do
|
|
full_name 'admin'
|
|
initials 'AD'
|
|
email 'admin_test@scinote.net'
|
|
password 'asdf1243'
|
|
password_confirmation 'asdf1243'
|
|
end
|
|
end
|