Sha256: a3938ca0519a593d2ca07b333231922bfe328c48f0fd895cfce30a0a5f6dcce0

Contents?: true

Size: 624 Bytes

Versions: 2

Compression:

Stored size: 624 Bytes

Contents

Feature: Automatically detect and insert image dimensions into tags
  In order to speed up development and appease YSlow

  Scenario: Rendering an image with the feature disabled
    Given "automatic_image_sizes" feature is "disabled"
    And the Server is running
    When I go to "/auto-image-sizes.html"
    Then I should not see "width="
    And I should not see "height="
  
  Scenario: Rendering an image with the feature enabled
    Given "automatic_image_sizes" feature is "enabled"
    And the Server is running
    When I go to "/auto-image-sizes.html"
    Then I should see "width="
    And I should see "height="

Version data entries

2 entries across 2 versions & 1 rubygems

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