Sha256: 0c10846af5781e3145183cc45d177daaedfdb244fabda1dd68b7557281188066

Contents?: true

Size: 540 Bytes

Versions: 18

Compression:

Stored size: 540 Bytes

Contents

Feature: Content types by extension
  As a content author
  I want Landable to deliver the right content type for my content

  Scenario Outline:
    Given a published page "/foo.<ext>"
    When  I GET "/foo.<ext>"
    Then  the response header "Content-Type" should be "<content_type>"

    Examples:
      | ext  | content_type     |
      | xml  | application/xml  |
      | json | application/json |
      | txt  | text/plain       |
      | html | text/html        |
      | htm  | text/html        |
      | foo  | text/plain       |

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
landable-1.14.0 features/public/content_types.feature
landable-1.13.2 features/public/content_types.feature
landable-1.13.1 features/public/content_types.feature
landable-1.12.3 features/public/content_types.feature
landable-1.12.2 features/public/content_types.feature
landable-1.12.1 features/public/content_types.feature
landable-1.11.1 features/public/content_types.feature
landable-1.11.0 features/public/content_types.feature
landable-1.10.0.rc2 features/public/content_types.feature
landable-1.10.0.rc1 features/public/content_types.feature
landable-1.9.2 features/public/content_types.feature
landable-1.9.1 features/public/content_types.feature
landable-1.9.0 features/public/content_types.feature
landable-1.9.0.rc2 features/public/content_types.feature
landable-1.9.0.rc1 features/public/content_types.feature
landable-1.8.0 features/public/content_types.feature
landable-1.7.1.rc1 features/public/content_types.feature
landable-1.7.0 features/public/content_types.feature