You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FactoryGirl.define do
factory :unconfirmed_user, class: 'User' do
email { Faker::Internet.email }
password { Faker::Internet.password }
password_confirmation { password }
factory :user, aliases: %i[ confirmed_user ] do
after :create, &:confirm
end
end
end
but causes the following output after upgrading to 4.8.0:
This factory works as expected on 4.7.0
but causes the following output after upgrading to 4.8.0:
The text was updated successfully, but these errors were encountered: