Sha256: c64797b1c11179f285c82a629f2dd43de202bd7b7fb0b603e6c5047c5cac7718

Contents?: true

Size: 1.05 KB

Versions: 5

Compression:

Stored size: 1.05 KB

Contents

Feature: YAML Front Matter
  In order to specific options and data inline

  Scenario: Rendering html
    Given the Server is running at "frontmatter-app"
    When I go to "/front-matter.html"
    Then I should see "<h1>This is the title</h1>"
    Then I should not see "---"
    When I go to "/front-matter-2.php"
    Then I should see "<h1>This is the title</h1>"
    Then I should see "<?php"
    Then I should not see "---"

  Scenario: A template changes frontmatter during preview
    Given the Server is running at "frontmatter-app"
    And the file "source/front-matter-change.html.erb" has the contents
      """
      ---
      title: Hello World
      layout: false
      ---
      <%= data.page.title %>
      """
    When I go to "/front-matter-change.html"
    Then I should see "Hello World"
    And the file "source/front-matter-change.html.erb" has the contents
      """
      ---
      title: Hola Mundo
      layout: false
      ---
      <%= data.page.title %>
      """
    When I go to "/front-matter-change.html"
    Then I should see "Hola Mundo"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
middleman-core-3.0.0.beta.2 features/front-matter.feature
middleman-core-3.0.0.beta.1 features/front-matter.feature
middleman-core-3.0.0.alpha.9 features/front-matter.feature
middleman-core-3.0.0.alpha.8 features/front-matter.feature
middleman-core-3.0.0.alpha.7 features/front-matter.feature