1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-18 00:29:06 +09:00
whippy-edition/spec/fabricators/user_fabricator.rb

8 lines
236 B
Ruby
Raw Normal View History

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