Sha256: fa3f1bf54d4aeafcd846ddd5b48978b48da918ba84ffd1f0de569d2c62223782

Contents?: true

Size: 680 Bytes

Versions: 3

Compression:

Stored size: 680 Bytes

Contents

Feature: Building the site

  Scenario: Default config builds only drafts with frontmatter build=true
    Given a fixture app "drafts-app"
    When I run `middleman build`
    Then the following files should not exist:
      | build/drafts/new-draft.html |
    And the following files should exist:
      | build/drafts/draft-build-true.html |

  Scenario: Config build=true does not build drafts with frontmatter build=false
    Given a fixture app "drafts-build-true-app"
    When I run `middleman build`
    Then the following files should exist:
      | build/drafts/new-draft.html |
    And the following files should not exist:
      | build/drafts/draft-build-false.html |

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
middleman-blog-drafts-0.3.3 features/build.feature
middleman-blog-drafts-0.3.2 features/build.feature
middleman-blog-drafts-0.3.0 features/build.feature