akkounts/spec/factories/devise.rb
Sebastian Kippe 1734b5c700
Add feature spec examples
With both logged in normal user and admin
2020-11-18 10:10:31 +01:00

10 lines
186 B
Ruby

FactoryBot.define do
factory :user do
id { 1 }
cn { "jimmy" }
email { "jimmy@example.com" }
password { "dis-muh-password" }
confirmed_at { DateTime.now }
end
end