require File.expand_path('../test_helper', __FILE__) class PreprocTest < UnitTest test "preproc" do app.stubs(:clear_tilt_cache).returns(true) app.stubs(:development?).returns(false) get '/css/screen.css' assert body =~ %r{email.[a-f0-9]{32}.png} end test "preproc static files" do app.stubs(:clear_cache).returns(true) app.stubs(:development?).returns(false) get '/css/style.css' assert body =~ %r{background.[a-f0-9]{32}.jpg} end test "no cache-busting hash for non-existent images" do app.stubs(:development?).returns(false) get '/css/style.css' assert body.include?('background: url(/images/404.png)') end test "no cache-busting hash for non-existent images" do app.stubs(:development?).returns(false) get '/css/style.css' assert body.include?("@import url('//fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700');") end test "preproc on minify" do app.stubs(:clear_cache).returns(true) app.stubs(:development?).returns(false) get '/css/application.css' assert body =~ %r{email.[a-f0-9]{32}.png} end test "embed" do app.stubs(:clear_cache).returns(true) app.stubs(:development?).returns(false) get '/css/screen.css' assert body =~ %r{data:image/png;base64,[A-Za-z0-9=/]{100,}} end test "ignores data-uris" do app.stubs(:clear_cach).returns(true) app.stubs(:development?).returns(false) get '/css/bariol.css' assert body =~ %r{data:application/x-font-woff;charset=utf-8;base64,[A-Za-z0-9=/]{100,}} end end