aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/mixins.yml
blob: d7a0b97295bad454656c31d916ddb095ba2b0787 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# tree mixins
tree_1:
  id: 1001
  type: TreeMixin
  parent_id:
  
tree_2:
  id: 1002
  type: TreeMixin
  parent_id: 1001

tree_3:
  id: 1003
  type: TreeMixin  
  parent_id: 1002

tree_4:
  id: 1004
  type: TreeMixin  
  parent_id: 1001

tree2_1:
  id: 1005
  type: TreeMixin
  parent_id:

tree3_1:
  id: 1006
  type: TreeMixin
  parent_id:

tree_without_order_1:
  id: 1101
  type: TreeMixinWithoutOrder
  parent_id:

tree_without_order_2:
  id: 1100
  type: TreeMixinWithoutOrder
  parent_id:

recursively_cascaded_tree_1:
  id: 5005
  type: RecursivelyCascadedTreeMixin
  parent_id:

recursively_cascaded_tree_2:
  id: 5006
  type: RecursivelyCascadedTreeMixin
  parent_id: 5005

recursively_cascaded_tree_3:
  id: 5007
  type: RecursivelyCascadedTreeMixin
  parent_id: 5006

recursively_cascaded_tree_4:
  id: 5008
  type: RecursivelyCascadedTreeMixin
  parent_id: 5007

# List mixins

<% (1..4).each do |counter| %>  
list_<%= counter %>:
  id: <%= counter+1006 %>
  pos: <%= counter  %>
  type: ListMixin
  parent_id: 5
<% end %>

# Nested set mixins

<% (1..10).each do |counter| %>  
set_<%= counter %>:
  id: <%= counter+3000 %>
  type: NestedSet
<% end %>

# Big old set
<%
[[4001, 0, 1, 20],
  [4002, 4001, 2, 7],
  [4003, 4002, 3, 4],
  [4004, 4002, 5, 6],
  [4005, 4001, 8, 13],
  [4006, 4005, 9, 10],
  [4007, 4005, 11, 12],
  [4008, 4001, 14, 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 %>

# subclasses of list items
<% (1..4).each do |i| %>
list_sub_<%= i %>:
  id: <%= i + 5000 %>
  pos: <%= i %>
  parent_id: 5000
  type: <%= (i % 2 == 1) ? ListMixinSub1 : ListMixinSub2 %> 
<% end %>