Commit e9752569b444cdb70c87317699993e2a61197a13

Authored by Dhruv Kapadia
1 parent 4d2b6d0c

Add photocracy user to testserver rake task

Showing 1 changed file with 5 additions and 1 deletions   Show diff stats
lib/tasks/testserver.rake
... ... @@ -16,7 +16,11 @@ namespace :testserver do
16 16  
17 17 u.email_confirmed = true
18 18 u.save
19   -
  19 +
  20 + #photocracy username
  21 + u = User.create!(:email => 'photocracytest@dkapadia.com', :password => 'saltines', :password_confirmation => "saltines")
  22 + u.email_confirmed = true
  23 + u.save
20 24 end
21 25  
22 26 task :launch => [:prepare, :start]
... ...