aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/mixins.yml
blob: e326f6675eeeb280aa1fc20dd039ccde2b39febe (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
# tree mixins
tree_1:
  id: 1
  type: TreeMixin
  parent_id: 0 
  
tree_2:
  id: 2
  type: TreeMixin
  parent_id: 1

tree_3:
  id: 3
  type: TreeMixin  
  parent_id: 2

tree_4:
  id: 4
  type: TreeMixin  
  parent_id: 1
  
# List mixins

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