Sha256: 6db8025fc6d467e70e0b115e55e2d97df20b5725e12097412901c7c72a045082

Contents?: true

Size: 698 Bytes

Versions: 10

Compression:

Stored size: 698 Bytes

Contents

# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
custom_page:
  id: 1
  title: Custom Page
  body: <p>This is a custom page.</p>
  created_at: <%= 5.days.ago.iso8601 %>
  updated_at: <%= 4.days.ago.iso8601 %>
  page_public: true
  published_as: live
draft_page:
  id: 2
  title: Draft Page
  body: <p>This is an unpublished page.</p>
  created_at: <%= 4.days.ago.iso8601 %>
  updated_at: <%= 3.days.ago.iso8601 %>
  page_public: true
  published_as: live
members_only_page:
  id: 3
  title: Members Only Page
  body: <p>This is not a public page.</p>
  created_at: <%= 3.days.ago.iso8601 %>
  updated_at: <%= 2.days.ago.iso8601 %>
  page_public: false
  published_as: live

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
community_engine-3.2.0 test/fixtures/pages.yml
community_engine-3.0.0 test/fixtures/pages.yml
community_engine-2.3.2 test/fixtures/pages.yml
community_engine-2.3.1 test/fixtures/pages.yml
community_engine-2.3.0 test/fixtures/pages.yml
community_engine-2.1.0 test/fixtures/pages.yml
community_engine-2.0.0 test/fixtures/pages.yml
community_engine-2.0.0.beta3 test/fixtures/pages.yml
community_engine-2.0.0.beta2 test/fixtures/pages.yml
community_engine-2.0.0.beta1 test/fixtures/pages.yml