aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/mixins.yml
blob: f0009cc5f0ba07a9decbb923fd8e9f581f4221ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# 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 %>