Sha256: c184ecb2691dfd3f056c730a7754e719679ad243c5f7e5685ccf32a9e4fb8b67

Contents?: true

Size: 826 Bytes

Versions: 2

Compression:

Stored size: 826 Bytes

Contents

Feature: Dynamic Pages
  In order to use a single view to generate multiple output files

  Scenario: Checking built folder for content
    Given a built test app
    Then "fake.html" should exist and include "I am real"
    Then "fake/one.html" should exist and include "I am real: one"
    Then "fake/two.html" should exist and include "I am real: two"
    And cleanup built test app
    
  Scenario: Preview basic proxy
    Given the Server is running
    When I go to "/fake.html"
    Then I should see "I am real"
    
  Scenario: Preview proxy with variable one
    Given the Server is running
    When I go to "/fake/one.html"
    Then I should see "I am real: one"
    
  Scenario: Preview proxy with variable two
    Given the Server is running
    When I go to "/fake/two.html"
    Then I should see "I am real: two"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
middleman-2.0.0.rc92 features/dynamic_pages.feature
middleman-2.0.0.rc91 features/dynamic_pages.feature