mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 05:34:53 +08:00
10 lines
182 B
Ruby
10 lines
182 B
Ruby
|
FactoryGirl.define do
|
||
|
factory :user do
|
||
|
full_name 'admin'
|
||
|
initials 'AD'
|
||
|
email 'admin@scinote.net'
|
||
|
password 'asdf1243'
|
||
|
password_confirmation 'asdf1243'
|
||
|
end
|
||
|
end
|