Started again with Rails 4
[feedcatcher.git] / vendor / rails / activerecord / test / fixtures / mixins.yml
diff --git a/vendor/rails/activerecord/test/fixtures/mixins.yml b/vendor/rails/activerecord/test/fixtures/mixins.yml
deleted file mode 100644 (file)
index 0f60e92..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-# Nested set mixins
-
-<% (1..10).each do |counter| %>  
-set_<%= counter %>:
-  id: <%= counter+3000 %>
-<% end %>
-
-# Big old set
-<%
-[[4001, 0, 1, 20],
-  [4002, 4001, 2, 7],
-  [4003, 4002, 3, 4],
-  [4004, 4002, 5, 6],
-  [4005, 4001, 14, 13],
-  [4006, 4005, 9, 10],
-  [4007, 4005, 11, 12],
-  [4008, 4001, 8, 19],
-  [4009, 4008, 15, 16],
-  [4010, 4008, 17, 18]].each do |set| %>
-tree_<%= set[0] %>:
-  id: <%= set[0]%>
-  parent_id: <%= set[1]%>
-  type: NestedSetWithStringScope
-  lft: <%= set[2]%>
-  rgt: <%= set[3]%>
-  root_id: 42
-
-<% end %>
-