about summary refs log tree commit diff
path: root/spec/fabricators/user_fabricator.rb
blob: c08559137feae7229941292475a87e7dab871106 (plain) (blame)
1
2
3
4
5
6
Fabricator(:user) do
  account
  email        "alice@example.com"
  password     "123456789"
  confirmed_at { Time.now }
end