Sha256: 1285ed8808f8dfefd30d2722152f6cadce5b8d79dc7322eafd4dcb033e62c587

Contents?: true

Size: 1.03 KB

Versions: 4

Compression:

Stored size: 1.03 KB

Contents

Feature: Generate mtime-based query string for busting browser caches
  In order to display the most recent content for IE & CDNs and appease YSlow
    
  Scenario: Rendering css with the feature disabled
    Given "cache_buster" feature is "disabled"
    And the Server is running at "cache-buster-app"
    When I go to "/stylesheets/relative_assets.css"
    Then I should not see "?"
    
  Scenario: Rendering html with the feature disabled
    Given "cache_buster" feature is "disabled"
    And the Server is running at "cache-buster-app"
    When I go to "/cache-buster.html"
    Then I should not see "?"

  Scenario: Rendering css with the feature enabled
    Given "cache_buster" feature is "enabled"
    And the Server is running at "cache-buster-app"
    When I go to "/stylesheets/relative_assets.css"
    Then I should see "?"

  Scenario: Rendering html with the feature enabled
    Given "cache_buster" feature is "enabled"
    And the Server is running at "cache-buster-app"
    When I go to "/cache-buster.html"
    Then I should see "?"

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
middleman-more-3.0.0.beta.1 features/cache_buster.feature
middleman-more-3.0.0.alpha.9 features/cache_buster.feature
middleman-more-3.0.0.alpha.8 features/cache_buster.feature
middleman-more-3.0.0.alpha.7 features/cache_buster.feature