Guest User

Untitled

a guest
Jan 22nd, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. task :users => :environment do
  2. %w[ bob rob ].map do |name|
  3. user = User.create! email: "#{ name }@testing.com",
  4. password: 'testing',
  5. password_confirmation: 'testing'
  6. user.confirm!
  7. end
  8. end
Add Comment
Please, Sign In to add comment