instiki/vendor/rails/activerecord/test/fixtures/mixins.yml

30 lines
537 B
YAML
Raw Normal View History

2007-01-22 14:43:50 +01:00
# Nested set mixins
<% (1..10).each do |counter| %>
set_<%= counter %>:
id: <%= counter+3000 %>
<% end %>
2007-01-22 14:43:50 +01:00
# Big old set
<%
[[4001, 0, 1, 20],
[4002, 4001, 2, 7],
[4003, 4002, 3, 4],
[4004, 4002, 5, 6],
[4005, 4001, 14, 13],
2007-01-22 14:43:50 +01:00
[4006, 4005, 9, 10],
[4007, 4005, 11, 12],
[4008, 4001, 8, 19],
2007-01-22 14:43:50 +01:00
[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 %>