Sha256: 7e6ebad5055737c4f56305f52502a0a58e3abf006c5c5fe064ffa26ca6d3cf92
Contents?: true
Size: 1.71 KB
Versions: 11
Compression:
Stored size: 1.71 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?" Scenario: Rendering css with the feature and relative_assets enabled Given "relative_assets" feature is "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 and relative_assets enabled Given "relative_assets" feature is "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
11 entries across 11 versions & 1 rubygems