Sha256: 07e50020502e811d1c81e1b0798cfafca145985ea6bfc2cb5ccd81fb9b392c4e

Contents?: true

Size: 536 Bytes

Versions: 2

Compression:

Stored size: 536 Bytes

Contents

Feature: Request Paths
  Scenario: when requesting is a path
    Given the Server is running at "middleman-app"
    When I go to "/directory/subdirectory.json"
    Then I should see:
    """
    <div>Foo</div>
    """
    And I should see:
    """
    "path":"/directory/subdirectory/"
    """

  Scenario: when request is root
    Given the Server is running at "middleman-app"
    When I go to "/index.json"
    Then I should see:
    """
    <h1>Middleman is Watching</h1>
    """
    And I should see:
    """
    "path":"/"
    """

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
middleman-api-1.0.1 features/request-paths.feature
middleman-api-1.0.0 features/request-paths.feature