mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-17 04:13:01 +00:00
8 lines
236 B
Ruby
8 lines
236 B
Ruby
Fabricator(:user) do
|
|
account { Fabricate.build(:account, user: nil) }
|
|
email { sequence(:email) { |i| "#{i}#{Faker::Internet.email}" } }
|
|
password '123456789'
|
|
confirmed_at { Time.zone.now }
|
|
agreement true
|
|
end
|