Sha256: 055d4b7bf2470b2138a84f3665a19e7649576fdd319ac0e3f5439d35074a6bfb
Contents?: true
Size: 1.24 KB
Versions: 3
Compression:
Stored size: 1.24 KB
Contents
require 'helper' require 'rack/lobster' class TestVitrineInRackStack < Test::Unit::TestCase include Rack::Test::Methods, VitrineTesting def app td = temporary_app_dir outer = Rack::Builder.new do # The outer app use Vitrine::App do |v| v.settings.set root: td end # And a lobster downstream map "/lobster" do run Rack::Lobster.new end end outer.to_app end def test_lobster get '/lobster' assert last_response.ok? assert_match /Lobstericious/, last_response.body, "Should have forwarded to downstream Lobster" end def test_fetch_static_file_sets_cache_control write_public('hello.coffee') do | f | f << 'window.alert "Hello Coffee"' end get '/hello.coffee' assert last_response.ok? assert last_response['Last-Modified'], 'Last-Modified should be set' assert_equal 'public, must-revalidate, max-age=3600', last_response['Cache-Control'] end def test_fetch_js write_public('hello.coffee') do | f | f << 'window.alert "Hello Coffee"' end get '/hello.js' assert last_response.ok? assert_include last_response.body, 'window.alert("Hello Coffee")', "Should include the JS fragment" end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
vitrine-0.0.31 | test/test_vitrine_in_rack_stack.rb |
vitrine-0.0.30 | test/test_vitrine_in_rack_stack.rb |
vitrine-0.0.29 | test/test_vitrine_in_rack_stack.rb |