Sha256: cb488801752695101769f394654d3a84505d89baf6f1719c5ce1f8d9d0a4c681

Contents?: true

Size: 851 Bytes

Versions: 10

Compression:

Stored size: 851 Bytes

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 enabled
    Given "cache_buster" feature is "enabled"
    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"
    When I go to "/cache-buster.html"
    Then I should not see "?"
    
  Scenario: Rendering css with the feature disabled
    Given "cache_buster" feature is "disabled"
    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"
    When I go to "/cache-buster.html"
    Then I should not see "?"

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
middleman-0.14.1 features/cache_buster.feature
middleman-0.14.0 features/cache_buster.feature
middleman-0.14.0.pre2 features/cache_buster.feature
middleman-0.13.2.pre features/cache_buster.feature
middleman-0.13.1 features/cache_buster.feature
middleman-0.12.2 features/cache_buster.feature
middleman-0.12.1 features/cache_buster.feature
middleman-0.12.0.pre3 features/cache_buster.feature
middleman-0.12.0.pre2 features/cache_buster.feature
middleman-0.12.0.pre features/cache_buster.feature