Sha256: 1d59541460e5fa43fda2149837f194fb2ccd270c368d2f3c9e25672ff773a70f

Contents?: true

Size: 1.29 KB

Versions: 6

Compression:

Stored size: 1.29 KB

Contents

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 number for non-existent images" do
    app.stubs(:development?).returns(false)
    get '/css/style.css'
    assert body.include?('background: url(/images/404.png)')
  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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
sinatra-assetpack-0.2.7 test/preproc_test.rb
sinatra-assetpack-0.2.6 test/preproc_test.rb
sinatra-assetpack-0.2.5 test/preproc_test.rb
sinatra-assetpack-0.2.4 test/preproc_test.rb
sinatra-assetpack-0.2.3 test/preproc_test.rb
sinatra-assetpack-0.2.2 test/preproc_test.rb