Sha256: 65fb41397ded4522d54267fafd6a66273a78a88395c8cdf01b96c9d927537ccc

Contents?: true

Size: 633 Bytes

Versions: 3

Compression:

Stored size: 633 Bytes

Contents

Feature: Recent posts
  In order to make up-to-date content more easily accessible
  As a blog owner
  I want to list the most recent posts in the sidebar
  
  Scenario: No posts yet
    When I go to the posts page
    Then I should not see "Recent"
  
  Scenario: Most recent of 7
    Given I have published these posts:
      | title |
      | one   | 
      | two   |
      | three |
      | four  |
      | five  |
      | six   |
      | seven |
    When I go to the posts page
    Then the "recent posts" sidebar should contain:
      | title |
      | seven |
      | six   |
      | five  |
      | four  |
      | three |
  

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mist-0.6.2 features/recent_posts.feature
mist-0.6.1 features/recent_posts.feature
mist-0.6.0 features/recent_posts.feature