Add the has_many_polymorphs plugin
[cs356-p2-videostore.git] / vendor / plugins / has_many_polymorphs / test / integration / app / test / fixtures / users.yml
diff --git a/vendor/plugins/has_many_polymorphs/test/integration/app/test/fixtures/users.yml b/vendor/plugins/has_many_polymorphs/test/integration/app/test/fixtures/users.yml
new file mode 100644 (file)
index 0000000..36c366f
--- /dev/null
@@ -0,0 +1,11 @@
+<% 1.upto(41) do |num| %>
+<%="user#{num}:" %>
+  id: <%= num.to_s %>
+  login: <%= "user#{num}" %>
+  crypted_password: "2fdefe5c83d80a03a828dd65e90cfff65f0fb42d043a254ca2cad6af968d0e15" #password
+  email: <%= "user#{num}@test.com" %>
+  salt: "1000"
+  created_at: <%= (Time.now - 30).to_s :db %>
+  updated_at: <%= Time.now.to_s :db %>
+  deleted: <%= num == 41 ? true : false %>
+<% end %>