Add the has_many_polymorphs plugin
[cs356-p2-videostore.git] / vendor / plugins / has_many_polymorphs / test / integration / app / test / fixtures / sellers.yml
diff --git a/vendor/plugins/has_many_polymorphs/test/integration/app/test/fixtures/sellers.yml b/vendor/plugins/has_many_polymorphs/test/integration/app/test/fixtures/sellers.yml
new file mode 100644 (file)
index 0000000..d056384
--- /dev/null
@@ -0,0 +1,10 @@
+<% 1.upto(20) do |num| %>
+<%="seller#{num}:" %>
+  id: <%= num %>
+  user_id: <%= num %>
+  company_name: <%= "seller#{num}" %>
+  capitalization: <%= num * 1.548 %>
+  created_at: <%= (Time.now - num.weeks).to_s :db %>
+  updated_at: <%= (Time.now - num.days).to_s :db %>
+<% end %>
+