mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 05:05:55 +08:00
26 lines
290 B
YAML
26 lines
290 B
YAML
|
one:
|
||
|
result: one
|
||
|
comment: three
|
||
|
|
||
|
two:
|
||
|
result: one
|
||
|
comment: four
|
||
|
|
||
|
three:
|
||
|
result: two
|
||
|
comment: five
|
||
|
|
||
|
four:
|
||
|
result: three
|
||
|
comment: six
|
||
|
|
||
|
test:
|
||
|
result: test
|
||
|
comment: test
|
||
|
|
||
|
<% 25.times do |n| %>
|
||
|
test_<%= n %>:
|
||
|
result: test2
|
||
|
comment: test_result_comment_<%= n %>
|
||
|
<% end %>
|