mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
20 lines
No EOL
713 B
Ruby
Executable file
20 lines
No EOL
713 B
Ruby
Executable file
require File.join(File.dirname(__FILE__), "spec_helper")
|
|
|
|
base = ::Middleman::Base
|
|
base.set :root, File.join(File.dirname(__FILE__), "fixtures", "sample")
|
|
|
|
describe "Cache Buster Feature" do
|
|
it "should not append query string if off" do
|
|
base.disable :cache_buster
|
|
browser = Rack::Test::Session.new(Rack::MockSession.new(base.new))
|
|
browser.get("/stylesheets/relative_assets.css")
|
|
browser.last_response.body.should_not include("?")
|
|
end
|
|
|
|
it "should append query string if on" do
|
|
base.enable :cache_buster
|
|
browser = Rack::Test::Session.new(Rack::MockSession.new(base.new))
|
|
browser.get("/stylesheets/relative_assets.css")
|
|
browser.last_response.body.should include("?")
|
|
end
|
|
end |