mirror of
https://github.com/neocities/neocities.git
synced 2025-08-27 03:13:26 +02:00
7 lines
230 B
Ruby
7 lines
230 B
Ruby
# frozen_string_literal: true
|
|
Fabricator(:site) do
|
|
username { SecureRandom.hex }
|
|
password { 'abcde' }
|
|
email { SecureRandom.uuid.gsub('-', '')+'@examplesdlfjdslfj.com' }
|
|
email_confirmed { true }
|
|
end
|