test/dummy/test/fixtures/posts.yml in magic_grid-0.12.3 vs test/dummy/test/fixtures/posts.yml in magic_grid-0.12.4
- old
+ new
@@ -14,10 +14,10 @@
<% title = "The Best Title Ever, Really" %>
<% story = 'It was a dark and stormy night and the Captain said, "Tell me a story, son". So I began. ' * 100 %>
<% 500.times do |i| %>
post_<%= i %>:
- title: <%= title.split.rotate(i).join " " %>
+ title: <%= "#{title}, part #{i}" %>
body: <%= story %>
published: <%= i.even? %>
user: user_<%= i % 100 %>
<% end %>