Sha256: 4c1a83504580e57a5e4dfc7854cb881fb90894406ede6a57c546a9c0c26d5ba2

Contents?: true

Size: 797 Bytes

Versions: 4

Compression:

Stored size: 797 Bytes

Contents

Feature: Local Data API
  In order to abstract content from structure

  Scenario: Rendering html
    Given the Server is running at "basic-data-app"
    When I go to "/data.html"
    Then I should see "One:Two"

  Scenario: Rendering json
    Given the Server is running at "basic-data-app"
    When I go to "/data3.html"
    Then I should see "One:Two"

  Scenario: Using data in config.rb
    Given the Server is running at "data-app"
    When I go to "/test1.html"
    Then I should see "Welcome"

  Scenario: Using data2 in config.rb
    Given the Server is running at "data-app"
    When I go to "/test2.html"
    Then I should see "Welcome"

  Scenario: Using nested data
    Given the Server is running at "nested-data-app"
    When I go to "/test.html"
    Then I should see "test:Hello"

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
middleman-core-3.1.0.rc.1 features/data.feature
middleman-core-3.1.0.beta.3 features/data.feature
middleman-core-3.1.0.beta.2 features/data.feature
middleman-core-3.1.0.beta.1 features/data.feature