Add the has_many_polymorphs plugin
[cs356-p2-videostore.git] / vendor / plugins / has_many_polymorphs / test / integration / app / test / fixtures / users.yml
1 <% 1.upto(41) do |num| %>
2 <%="user#{num}:" %>
3   id: <%= num.to_s %>
4   login: <%= "user#{num}" %>
5   crypted_password: "2fdefe5c83d80a03a828dd65e90cfff65f0fb42d043a254ca2cad6af968d0e15" #password
6   email: <%= "user#{num}@test.com" %>
7   salt: "1000"
8   created_at: <%= (Time.now - 30).to_s :db %>
9   updated_at: <%= Time.now.to_s :db %>
10   deleted: <%= num == 41 ? true : false %>
11 <% end %>