Sha256: 66a76ea4dc22bac1c455352ea853033d46e3cf42794e2090e83a05414678b3dc

Contents?: true

Size: 556 Bytes

Versions: 14

Compression:

Stored size: 556 Bytes

Contents

# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html

one:
  title: MyString
  body: MyText
  published: false
  user: one

two:
  title: MyString
  body: MyText
  published: false
  user: two

<% 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 " " %>
  body: <%= story %>
  published: <%= i.even? %>
  user: user_<%= i % 100 %>
<% end %>

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
magic_grid-0.12.3 test/dummy/test/fixtures/posts.yml
magic_grid-0.12.2 test/dummy/test/fixtures/posts.yml
magic_grid-0.12.1 test/dummy/test/fixtures/posts.yml
magic_grid-0.12.0 test/dummy/test/fixtures/posts.yml
magic_grid-0.11.1 test/dummy/test/fixtures/posts.yml
magic_grid-0.11.0 test/dummy/test/fixtures/posts.yml
magic_grid-0.10.4 test/dummy/test/fixtures/posts.yml
magic_grid-0.10.3 test/dummy/test/fixtures/posts.yml
magic_grid-0.10.2 test/dummy/test/fixtures/posts.yml
magic_grid-0.10.1 test/dummy/test/fixtures/posts.yml
magic_grid-0.10.0 test/dummy/test/fixtures/posts.yml
magic_grid-0.9.3.1 test/dummy/test/fixtures/posts.yml
magic_grid-0.9.3 test/dummy/test/fixtures/posts.yml
magic_grid-0.9.2 test/dummy/test/fixtures/posts.yml