8 lines
230 B
Ruby
8 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
|