Sha256: ce11af707c4cb94ff6a08828704ba6ff29ebe5e385671350c6676ef907158dc0
Contents?: true
Size: 308 Bytes
Versions: 7
Compression:
Stored size: 308 Bytes
Contents
# frozen_string_literal: true FactoryBot.define do factory :user do email { Faker::Internet.email } role { :user } password { 'Pa$$w0rd!' } password_confirmation { 'Pa$$w0rd!' } # password { Faker::Internet.password(min_length: 6, mix_case: true, special_characters: true) } end end
Version data entries
7 entries across 7 versions & 1 rubygems