9 lines
170 B
Ruby
9 lines
170 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryGirl.define do
|
|
factory :user do
|
|
email 'john.doe@example.com'
|
|
password '12345'
|
|
password_confirmation '12345'
|
|
end
|
|
end
|