Froze rails gems
[depot.git] / vendor / rails / railties / lib / rails_generator / generators / components / model / templates / fixtures.yml
1 # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
2
3 <% unless attributes.empty? -%>
4 one:
5 <% for attribute in attributes -%>
6 <%= attribute.name %>: <%= attribute.default %>
7 <% end -%>
8
9 two:
10 <% for attribute in attributes -%>
11 <%= attribute.name %>: <%= attribute.default %>
12 <% end -%>
13 <% else -%>
14 # one:
15 # column: value
16 #
17 # two:
18 # column: value
19 <% end -%>