mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-01 05:02:50 +08:00
88d7429041
2. fixes gem dependencies issues 3. fixes failing migrations 4. updates depricated factory_girl => factory_bot and fixes related issues Signed-off-by: zmagod <zmago_devetak@yahoo.com>
9 lines
186 B
Ruby
9 lines
186 B
Ruby
FactoryBot.define do
|
|
factory :user do
|
|
full_name 'admin'
|
|
initials 'AD'
|
|
email 'admin_test@scinote.net'
|
|
password 'asdf1243'
|
|
password_confirmation 'asdf1243'
|
|
end
|
|
end
|