Sha256: 18b63d51f91d07346be031f0deceb8535d24d32c6a2c0ae45cb1db6785c7f7e3

Contents?: true

Size: 1.09 KB

Versions: 19

Compression:

Stored size: 1.09 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 see "blank.gif'"
    
  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 see 'site.css"'

  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 "blank.gif?"

  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 "site.css?"
    Then I should see "blank.gif?"

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
middleman-more-3.0.11 features/cache_buster.feature
middleman-more-3.0.10.pre.1 features/cache_buster.feature
middleman-more-3.0.9 features/cache_buster.feature
middleman-more-3.0.8 features/cache_buster.feature
middleman-more-3.0.8.pre.2 features/cache_buster.feature
middleman-more-3.0.8.pre.1 features/cache_buster.feature
middleman-more-3.0.7 features/cache_buster.feature
middleman-more-3.0.6 features/cache_buster.feature
middleman-more-3.0.5 features/cache_buster.feature
middleman-more-3.0.4 features/cache_buster.feature
middleman-more-3.0.2 features/cache_buster.feature
middleman-more-3.0.1.pre features/cache_buster.feature
middleman-more-3.0.0 features/cache_buster.feature
middleman-more-3.0.0.rc.4 features/cache_buster.feature
middleman-more-3.0.0.rc.3 features/cache_buster.feature
middleman-more-3.0.0.rc.2 features/cache_buster.feature
middleman-more-3.0.0.rc.1 features/cache_buster.feature
middleman-more-3.0.0.beta.3 features/cache_buster.feature
middleman-more-3.0.0.beta.2 features/cache_buster.feature