Commit b541facf161246488e940309f1efae03770ac036
1 parent
e025bc82
Exists in
master
and in
29 other branches
ActionItem8: don't try to create a profile with a reserved identifier
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@424 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
script/populate
1 | 1 | #!/usr/bin/env ruby |
2 | 2 | require File.dirname(__FILE__) + '/../config/environment' |
3 | 3 | |
4 | -User.create!(:login => 'test', :email => 'admin@example.com', :password => 'test', :password_confirmation => 'test') | |
4 | +User.create!(:login => 'testprofile', :email => 'admin@example.com', :password => 'test', :password_confirmation => 'test') | |
5 | 5 | User.create!(:login => 'user', :email => 'user@example.com', :password => 'user', :password_confirmation => 'user') |
6 | 6 | User.create!(:login => 'usuario', :email => 'usuario@example.com', :password => 'usuario', :password_confirmation => 'usuario') |
7 | 7 | User.create!(:login => 'ze', :email => 'ze@example.com', :password => 'test', :password_confirmation => 'test') | ... | ... |